Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have multiple set of data to insert at once, say 4 rows.

My table has three columns: Person, Id and Office.

Can I insert all 4 rows in a single SQL statement?

share|improve this question

8 Answers

In SQL Server 2008 you can insert multiple rows using a single SQL INSERT statement.

INSERT INTO Table ( Column1, Column2 ) VALUES
( Value1, Value2 ), ( Value1, Value2 )

For reference to this have a look at MOC Course 2778A - Writing SQL Queries in SQL Server 2008.

share|improve this answer
10  
And please note that the maximum number of rows in one insert statement is 1000. – ChrisJ Mar 21 at 13:39

If you are inserting into a single table, you can write your query like this (maybe only in MySQL):

insert into table1 (First,Last) values ("Fred","Smith"),
  ("John","Smith"),
  ("Michael","Smith"),
  ("Robert","Smith");
share|improve this answer
4  
As of SQL Server 2008, this will work if you replace the double quotes with single ones. – Valentino Vranken Mar 22 '12 at 13:37

You can use INSERT with SELECT UNION ALL:

INSERT INTO MyTable  (FirstCol, SecondCol)
    SELECT  'First' ,1
    UNION ALL
SELECT  'Second' ,2
    UNION ALL
SELECT  'Third' ,3
...

Only for small datasets though, which should be fine for your 4 records.

share|improve this answer

INSERT statements that use VALUES syntax can insert multiple rows. To do this, include multiple lists of column values, each enclosed within parentheses and separated by commas.

Example:

INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);
share|improve this answer

You can use sql server xml to do this as follows:

  1. You declare and set an xml variable

    declare @test nvarchar(max), @testxml xml
    
    set @test = '<topic><dialog id="1" answerId="41">
        <comment>comment 1</comment>
        </dialog>
    <dialog id="2" answerId="42" >
    <comment>comment 2</comment>
        </dialog>
    <dialog id="3" answerId="43" >
    <comment>comment 3</comment>
        </dialog>   
    </topic>'
    
    
    set @testxml = cast(@test as xml)
    
  2. You run a simple XPath Query as follows:

    insert @answerTemp
    SELECT  ParamValues.ID.value('@id','int') ,
    ParamValues.ID.value('@answerId','int') ,
    ParamValues.ID.value('(comment)[1]','VARCHAR(1000)')
    FROM @testxml.nodes('topic/dialog') as ParamValues(ID)
    

    View more details and code comments here: http://www.cyberminds.co.uk/blog/articles/how-to-insert-multiple-rows-in-sql-server.aspx

    Thanks

share|improve this answer
1  
-1 The OP specifically asked for an SQL query. This may very well work, but it is not an SQL query. – Tim Sep 11 '12 at 13:10

The below code is used for multiple record insert

INSERT INTO Student([Name], Fname,Surname,Address,Contact ) 
SELECT 'Ali','Ahmed','Qazi','Hyd','2342342'
UNION ALL
SELECT 'abc','def','Sol','Lrk','03413656'
share|improve this answer
8  
Welcome to stackoverflow. Please be sure to read previous answers first. DavGarcia already suggested using UNION ALL .. over three years ago. – Leigh Mar 22 '12 at 0:27
Using a UNION ALL seems to be more cumbersome than just using multiple VALUES. What is the advantage of using a UNION ALL in this case? – Jason Hartley Jul 20 '12 at 2:39
Jason - Earlier versions of SQL Server don't support using multiple VALUES elements, so you have to use UNION ALL. – Rich Aug 4 '12 at 19:26

you can perform multiple operations in a single sql query, just separate the insert statements with semicolons, e.g.

insert into table1 (field1,field2) values (value1,value2);
insert into table1 (field1,field2) values (value1,value2);
insert into table1 (field1,field2) values (value1,value2);
insert into table1 (field1,field2) values (value1,value2)

you can wrap in a transaction if necessary also

share|improve this answer
2  
Apparently your Jedi skills are about as good as mine. – Jason Lepack Jan 17 '09 at 6:09
2  
-1 not what the OP asked for. – Tim Sep 11 '12 at 13:06
SQL> insert all
  2  into stud values(4,'kk',78)
  3  into stud values(5,'ll',99)
  4  select * from stud;

4 rows created.

SQL> select * from stud;

      ROLL NAME                 PERCENTAGE
---------- -------------------- ----------
         1 aa                           90
         2 hh                           93
         4 kk                           78
         4 kk                           78
         5 ll                           99
         5 ll                           99

6 rows selected.
share|improve this answer
2  
this is for oracle, and the question is tagged for sql-server – Gonzalo.- Oct 4 '12 at 22:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.