- with_query_name [ ( column_name [, ...] ) ] AS ( select | insert | update | delete )
+ with_query_name [ ( column_name [, ...] ) ] AS ( select | values | insert | update | delete )
TABLE [ ONLY ] table_name [ * ]
subqueries that can be referenced by name in the primary query.
The subqueries effectively act as temporary tables or views
for the duration of the primary query.
- Each subquery can be a SELECT,
+ Each subquery can be a SELECT, VALUES,
INSERT, UPDATE or
DELETE statement.
When writing a data-modifying statement (INSERT,