Created
December 12, 2023 06:46
-
-
Save sqlparser/b51bbc4fe9503fa0e61d7ada7da4b018 to your computer and use it in GitHub Desktop.
Google BigQuery 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 | |
WITH orders AS | |
(SELECT 5 as order_id, | |
"sprocket" as item_name, | |
200 as quantity) | |
SELECT * REPLACE ("widget" AS item_name) | |
FROM orders; | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
make public