Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created December 12, 2023 08:09
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/16d23da0b0499ed569caa93ea753140d to your computer and use it in GitHub Desktop.
Save sqlparser/16d23da0b0499ed569caa93ea753140d to your computer and use it in GitHub Desktop.
Apache Impala Sample SQL
```sql
insert into t2 select * from t1;
insert into t2 select c1, c2 from t1;
CREATE VIEW v5 AS SELECT c1, CAST(c3 AS STRING) c3, CONCAT(c4,c5) c5, TRIM(c6) c6, "Constant" c8 FROM t1;
CREATE VIEW v7 (c1 COMMENT 'Comment for c1', c2) COMMENT 'Comment for v7' AS SELECT t1.c1, t1.c2 FROM t1;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment