Select Statement
Description of SELECT statement options, clauses and examples.
SEL DISTINCT col1, col2 FROM table1SELECT DISTINCT col1, col2 FROM table1SELECT
my_val, sum(col1),
col2 AS my_val FROM table1SELECT
col2, sum(col1),
col2 AS my_val FROM MY_DW.table1Removed clause options
Known Issues
1. SEL abbreviation unsupported
Related EWIs
Last updated
Was this helpful?