top button
Flag Notify
Site Registration

how to insert multiple records in a single query?

+3 votes
287 views
how to insert multiple records in a single query?
posted May 15, 2015 by Muskan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

INSERT INTO

(col1, col2,...., coln) SELECT col1, col2,...., coln FROM ;
answer May 15, 2015 by Arun Gowda
...