Created
December 12, 2023 08:09
-
-
Save sqlparser/16d23da0b0499ed569caa93ea753140d to your computer and use it in GitHub Desktop.
Apache Impala 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 | |
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