Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created December 12, 2023 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sqlparser/1d8f7b35260692d1f591b88d932feca9 to your computer and use it in GitHub Desktop.
Save sqlparser/1d8f7b35260692d1f591b88d932feca9 to your computer and use it in GitHub Desktop.
Presto Sample SQL
```sql
CREATE TABLE orders_column_aliased (order_date, total_price)
AS
SELECT orderdate, totalprice
FROM orders;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment