Tagged: sql server development

5

Common table Expression (CTE)

What is Common table Expression Common table expression (CTE) is a temporary result set and store the result set like normal view that can be use within a SELECT, INSERT, UPDATE, or DELETE statement....

6

Correlated and Subqueries

What is SQL Query SQL is a Standard Query Language for storing, manipulating and retrieving data in databases. SQL is a programming language(Query programing language) like PHP, Java, .net etc language use for application...

2

Derived Tables – Sql server

Derived Tables are similar to table variables it’s exist in memory only many deferent is table variable need to declare and derived table always create within a select statements, its also called to Subsquery....

3

Merge Statement

MERGE statement generally used in warehouse ETL process where we need to perform multiple operations like insert, update and delete data in target table based source table. MERGE statement joins target to source by...