Question: Is it possible to insert several rows into a table with a single INSERT statement?
A
B
No
B
Yes
Note: Not available
create table foo (id int auto_increment, name int);
CREATE TABLE table1 (
column1 INT,
column2 INT,
column3 INT,
column4 INT
)
Which one of the following is the correct syntax for adding the column, "column2a" after column2, to the table shown above?