I am inserting records to MySQL Table using the following Query :
insert into table(field1, field2) values(1,2);
Now again when I want to add data I am using the above query only change data like :
insert into table(field1, field2) values(3,4);
So is there a way using which I can add more data at a time ?