0
Can you insert into more than one row at a time ?
If so would be code be like this INSERT INTO house, size Values (bungalow, 24) (Detached house, 35)
2 Answers
0
You have already written. Just add comma before every next values like.
INSERT INTO table_name (house, size)
values
(
'bungalow',
24
),
(
'Detached house',
35
),
(
'xyz',
30
)
0
Thanks