I can insert one row in a table using this code:
INSERT INTO SCHEME.TABLE
(col1, col2)
VALUES ('val1', 'val2');
I need to insert several rows in a table.
To insert several rows, i've tried:
INSERT INTO SCHEME.TABLE
(col1, col2)
VALUES ('val1', 'val2'),
VALUES ('val1', 'val2');
INSERT INTO SCHEME.TABLE
(col1, col2)
VALUES ('val1', 'val2'),('val1', 'val2');
and some other variations. Niether of them worked :(