Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created December 12, 2023 06:46
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/b51bbc4fe9503fa0e61d7ada7da4b018 to your computer and use it in GitHub Desktop.
Save sqlparser/b51bbc4fe9503fa0e61d7ada7da4b018 to your computer and use it in GitHub Desktop.
Google BigQuery Sample SQL
```sql
WITH orders AS
(SELECT 5 as order_id,
"sprocket" as item_name,
200 as quantity)
SELECT * REPLACE ("widget" AS item_name)
FROM orders;
```
@sqlparser
Copy link
Author

make public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment