-- 创建逻辑库
create database 库名;
-- 查询逻辑库
show database;
-- 删除逻辑库
drop database 库名;
其他基础操作
-- 查看当前逻辑库下所有表
show tables;
-- 查看指定表结构
desc 表名;
-- 查看指定表的建表语句
show create table 表名;
-- 删除表
drop table 表名;
保证_先有父表,才有子表的逻辑性
-- 给某列添加索引,索引名建议命名格式:idx_列名
create index 索引名 on 表名(列名);
-- 查询表的索引
show index from 表名;
-- 删除
drop index 索引名 on 表名;