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>
9 lines
220 B
SQL
9 lines
220 B
SQL
-- https://dev.mysql.com/doc/refman/8.0/en/drop-database.html
|
|
|
|
-- DROP {DATABASE | SCHEMA} [IF EXISTS] db_name
|
|
|
|
DROP DATABASE IF EXISTS db_name;
|
|
DROP DATABASE db_name;
|
|
DROP SCHEMA IF EXISTS db_name;
|
|
DROP SCHEMA db_name;
|