一、数据库基础操作
1.查询数据库
show databases;
2.创建数据库
create database (if not exits) 数据库名;
3.使用数据库
use 数据库名;
4.删除数据库
drop database (if exits) 数据库名;
二、表的操作用法
1.创建表
create table 表名;
2.查询所有表名
show tables;
3.查询表结构
desc 表名;
方式一:show create table 表名;
方式二:show full columns from 表名;
4.删除表
删除单张表:drop table (if exits) 表名;
删除多张表:drop table 表1,表2;
5.修改表结构
5.1添加字段
alter table 表名 change add column 列名 列类型 comment备注信息;
5.2删除字段
alter table 表名 drop column 列名;
5.3修改字段
alter table 表名 change 原字段名 新字段名 类型 comment备注信息;
5.4 修改表名
alter table 旧表名 rename 新表名;
5.5 修改表的编码格式
alter table 表名 convert to character set utf8b4;