4
In Dizzle you can make use of INSERT in order to insert data into a table.
4
In Drizzle you can make use of INSERT in order to insert data into a table.
10
INSERT INTO A VALUES ("1");
8
INSERT INTO A VALUES ("1");
15
13
multi row inserts, performance thereof.
15
INSERT statements that use VALUES syntax can insert multiple rows. To do this, use the multirow VALUES syntax (include multiple lists of column values, each enclosed within parentheses and separated by commas): ::
17
INSERT INTO music (artist, album, date_prod, genre) VALUES
18
('Beatles', 'Abbey Road', '1969-09-26', 'rock'),
19
('The Velvet Underground', 'The Velvet Underground', '1969-03-05', 'rock');
23
INSERT INTO table_1 (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);
25
The following statement is incorrect since the number of values in the list does not match the number of column names: ::
27
INSERT INTO table_1 (a,b,c) VALUES(1,2,3,4,5,6,7,8,9);
29
VALUE is a synonym for VALUES where performing a single or multirow INSERT.
33
A multi-row INSERT involving three rows will require roughly one third of the time required to execute the three single-row statements. This performance improvement can become quite significant over a large number of statements.
b'\\ No newline at end of file'