428d851913
* refactor: generic rename to mysql * refactor: g4 with mysql syntax * test: mysql syntax * refactor: remove useless keywords * refactor: remove nonReserved keywords * refactor: lint specificFunction --------- Co-authored-by: liuyi <liuyi@dtstack.com>
10 lines
254 B
SQL
10 lines
254 B
SQL
-- https://dev.mysql.com/doc/refman/8.0/en/checksum-table.html
|
|
|
|
/* CHECKSUM TABLE tbl_name [, tbl_name] ... [QUICK | EXTENDED] */
|
|
|
|
|
|
CHECKSUM TABLE t1, t2, t3 QUICK;
|
|
CHECKSUM TABLE t1, t2, t3 EXTENDED;
|
|
CHECKSUM TABLE t1 QUICK;
|
|
CHECKSUM TABLE t1 EXTENDED;
|