6 lines
99 B
SQL
6 lines
99 B
SQL
INSERT INTO tbl (i, j, s)
|
|
VALUES
|
|
(1, 1, 'test1'),
|
|
(2, 2, 'test2'),
|
|
(3, 3, 'test3');
|