Best way to do multi-row insert in Oracle?

前端 未结 9 1395
悲&欢浪女
悲&欢浪女 2020-11-22 02:52

I\'m looking for a good way to perform multi-row inserts into an Oracle 9 database. The following works in MySQL but doesn\'t seem to be supported in Oracle.



        
9条回答
  •  情歌与酒
    2020-11-22 03:39

    Cursors may also be used, although it is inefficient. The following stackoverflow post discusses the usage of cursors :

    INSERT and UPDATE a record using cursors in oracle

提交回复
热议问题