Hi All,
INSERT INTO tab_name (ID,NAME) VALUES (0,"zero" );
INSERT INTO tab_name (ID,NAME) VALUES (1,"one" );
Can the above two statements be combined in to just one INSERT INTO statement
Please help
INSERT INTO tab_name (ID,NAME) VALUES (0,"zero" );
INSERT INTO tab_name (ID,NAME) VALUES (1,"one" );
Can the above two statements be combined in to just one INSERT INTO statement
Please help
Comment