删除Lindorm Database。

语法

drop_database_statement ::=  DROP DATABASE [ IF EXISTS ] database_name
注意:lindorm 2.2.16版本前,默认以database的别名schema为主,默认支持等价的语法drop schema [if exists] schema_name

示例

drop schema if exists test;
drop database if exists test;