sql 임시 태이블을 만드는 with

WITH TemporaryTable AS (SELECT Name FROM Users) SELECT * FROM TemporaryTable;

Common Table Expressions or CTEs act like temporary views that exist only for the duration of a single SQL statement.
sqlite

임시 태이블을 만든다. common table expression은 직관적이지 않은 이름이라 개념을 파악하기 어렵다.