4d1dfa676f
* refactor: spark sql g4 * feat: support spark sql suggestion * test: spark sql suggestion unit test * test: hive spell check * feat: spark sql keyword has multiple values * test: KW_NOT KW_RLIKE split into two value --------- Co-authored-by: liuyi <liuyi@dtstack.com>
7 lines
191 B
SQL
7 lines
191 B
SQL
SELECT * FROM table_name WHERE NOT (age > 30);
|
|
SELECT * FROM table_name WHERE ! (age > 30);
|
|
|
|
|
|
SELECT * FROM table_name WHERE name RLIKE 'M+';
|
|
SELECT * FROM table_name WHERE name REGEXP 'M+';
|