Was this helpful?
Common Table Expression Format
A query that uses a common table expression has the following format:
[ WITH { with_list_element },... ] SELECT_expr ;
where with_list_element format is:
table_name [ ( { column_name },... ) ] AS ( query_expr ) ;
Last modified date: 03/21/2024