创建表
使用 CREATE TABLE
语句在数据库中创建新表:
CREATE TABLE [IF NOT EXISTS] tblname
(create_definition,...)
[table_options]
[partition_options];
示例如下:
CREATE TABLE test (c1 int primary key, c2 VARCHAR(50));
查看表
使用 SHOW CREATE TABLE
语句查看建表:
SHOW CREATE TABLE test;
使用 SHOW TABLES
语句查看数据库中的所有表,示例如下:
SHOW TABLES FROM my_db;
删除表
使用 DROP TABLE
语句删除表:
DROP TABLE [IF EXISTS] table_list;
table_list:
tblname [, tblname …]
示例如下:
DROP TABLE test;
或者
DROP TABLE IF EXISTS test;