Created
December 12, 2023 08:14
-
-
Save sqlparser/1d8f7b35260692d1f591b88d932feca9 to your computer and use it in GitHub Desktop.
Presto Sample SQL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```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