Hi,
I created a table with field names "id", "name", "score". Now I want to insert values for this table. I don't know how to do insert multiple rows into this table but I can do single as below.
insert into table
values (1,'XYZ',55)
I tried the below but it doesn't work
insert into table
values (1,'XYZ',55),
values (2,'xaz',73)