Overview
Scenarios
Product Architecture
Instance Types
Compatibility Notes
drop_database_stmt:DROP DATABASE [IF EXISTS] database_name;
Parameter | Optional or Not | Description |
IF EXISTS | Optional | Prevents errors when the database does not exist. |
database_name | Required | Specifies the name of the database to be deleted. |
tdsql [(none)]> DROP DATABASE test1;Query OK, 0 rows affected
피드백