View Single Post
  #6 (permalink)  
Old 08-03-2007, 05:16 AM
Murali Murali is offline
D-Web Master
 
Join Date: Feb 2007
Location: India-Chennai.
Posts: 386
Murali is on a distinguished road
Send a message via AIM to Murali
Default Re: What is Bulk Insert in sql?

May be here are the two ways of inserting bulk data to the tables in MYSQL.

INSERT INTO ... SELECT statement;

INSERT INTO table1(id,name) VALUES (1,'test'),(2,'test2'),(3,'test3');
__________________
-Murali..
Reply With Quote