How to insert multiple rows records using a single Insert Into SQL Command

if we want to insert multiple rows records, we can still use insert into command for each row as shown below,



but you can insert all those rows by using one insert into command rather than using more insert into command as shown below,

Comments

Popular posts from this blog

SQL SERVER – TRIM() Function – UDF TRIM()

Delete duplicate records from a Table in SQL Server