1.创建表
create table yuntask_test.yk_user_owner_stat
(
id int not null auto_increment,
owner_name varchar(128) not null default '' comment '直销商户id',
service_fee decimal(10,2) not null default 0 comment '服务费',
count_date date default null comment '统计日期',
create_time datetime not null default now() comment '创建时间',
primary key (id)
)ENGINE=InnoDB DEFAULT CHARSET=utf8 comment '表备注';
2.增加字段
alter table 表名 add column `new_contact_time` datetime default null comment '备注';
alter table 名 drop column 字段名;
3.修改字段备注
alter table 表名 modify column `last_contact_time` datetime comment '备注';
4.修改表备注
alter table
表名
comment '
备注
';
5.
查看表结构
show create table 表名;
show table status from 表名;
show variables like 'xxx%' -- 模糊查询表
show table status from 数据库名; --查询数据库下所有表信息
show full columns from 表名; --查看表字段
6.查看执行计划
explain 语句;
7.查看数据库进程
show full processlist;
8.字段自增标识
auto_increment 关键字;
修改初始值
alter table '表名' auto_increment = 100;
9.修改字段change语法(改备注,默认值,是否空,类型都可以用)
alter table 表名 change 字段 字段 int not null default 0 comment '备注';