Category: Tech Tips & Tricks

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...