Answers for "oracle inserting multiple rows at a time"

SQL
1

oracle insert multiple rows into same table

INSERT INTO my_table (col1, col2)
SELECT 8000, 0 FROM DUAL
UNION ALL
SELECT 8001, 5 FROM DUAL;
Posted by: Guest on August-13-2021

Code answers related to "oracle inserting multiple rows at a time"

Code answers related to "SQL"

Browse Popular Code Answers by Language