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...
Date and Time Format Using Convert Function in MS SQL Server
MS SQL Server provides has a number of built-in options to format a date and time in different ways. Here are the list of built-in...
How to Change a Column to Allow NULL in MS SQL Server
If you have a column in a SQL Server table that does not allow NULL values and you want to insert row(s) with NULL values,...
Correlated Update in MS SQL Server
Updating data of one table by data of another table is very much important in Data Engineering. Which table need to be updated is called...