📌  相关文章
📜  从一个表中抓取所有记录到另一个oracle sql代码示例

📅  最后修改于: 2022-03-11 15:05:20.759000             🧑  作者: Mango

代码示例1
--tbl_temp1 is the source
--tbl_temp2 is the destination
--fld_id is the columns you want to bring over
--where statement is up to you!

INSERT INTO tbl_temp2 (fld_id)
SELECT tbl_temp1.fld_order_id
FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;