Bulk INSERT in MS SQL Server

Sometimes you need to insert multiple rows into your desired table in MS SQL Server. A Bulk insert is a process or method provided by...

How to Drop Columns in MS SQL Server

Sometime you may need to delete one or more unused or obsolete columns from your existing table. To do this, you need use the ALTER TABLE...

MERGE Statement in MS SQL Server

Sometime we need to update one table based on the values of another table. Which table need to be updated is called target table or...