SQL CTE (Common Table Expression)

SQL

Usage

WITH temp AS ( SELECT * FROM employees WHERE active = 1 ) SELECT * FROM temp

Sources