Mysql创建更新常用操作

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 '备注';

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值