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?
|
I have multiple set of data to insert at once, say 4 rows. My table has three columns: Can I insert all 4 rows in a single SQL statement? |
||||
|
|
|
In SQL Server 2008 you can insert multiple rows using a single SQL INSERT statement.
For reference to this have a look at MOC Course 2778A - Writing SQL Queries in SQL Server 2008. |
|||||
|
|
If you are inserting into a single table, you can write your query like this (maybe only in MySQL):
|
|||||
|
|
You can use INSERT with SELECT UNION ALL:
Only for small datasets though, which should be fine for your 4 records. |
|||
|
|
|
Example:
|
||||
|
|
|
You can use sql server xml to do this as follows:
|
|||||
|
|
The below code is used for multiple record insert
|
|||||||||
|
|
you can perform multiple operations in a single sql query, just separate the insert statements with semicolons, e.g.
you can wrap in a transaction if necessary also |
|||||||||
|
|
|||||
|