Table Structure (tbl_students) with duplicate records.
SQL Query to Delete Duplicate Records
Records after Executing delete query
A common table expression (CTE) can be thought of as a temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement. A CTE is similar to a derived table in that it is not stored as an object and lasts only for the duration of the query. Unlike a derived table, a CTE can be self-referencing and can be referenced multiple times in the same query.
source: technet.microsoft.com
A CTE contains three core parts:
- The CTE name (this is what follows the WITH keyword)
- The column list (optional)
- The query (appears within parentheses after the AS keyword)
No comments