885b85e842
* feat: add showIndex parser rule * test: uncomment show index test cases * test: add unit tests about DML syntax to HiveSQL * test: add unit tests about export and import syntax to HiveSQL * refactor: recompile hive grammar * test: correct description of HiveSQL unit tests
7 lines
110 B
SQL
7 lines
110 B
SQL
UPDATE table_name
|
|
SET col1 = new_value;
|
|
|
|
UPDATE table_name
|
|
SET col1 = new_value,
|
|
col2 = new_value2
|
|
WHERE id=1; |