I have problem in inserting multiple rows with 1 query using ms access 2003. When I use INSERT INTO
like the code below
INSERT INTO Employee values ('1','b','c');
INSERT INTO Employee values ('2','d','e');
the problem, ms access always appears pop up characters found after end of SQL Statement. So, are there any way to insert the data into the table?