您的位置:首页 > 数据库 > MySQL

Mysql表结构

2016-01-19 16:57 453 查看

1.查看表

查看表结构命令,如下:

desc 表名;

show columns from 表名;

describe 表名;

show create table 表名;

use information_schema

select * from columns where table_name=’表名’;

2.增加列

1.alter table 表名 add 列名 列类型 列参数【加的列在表的最后面】

例:alter table test add username char(20) not null default ”;

alter table test add birth date not null default ‘0000-00-00’;

2.alter table 表名 add 列名 列类型 列参数 after 某列【把新列加在某列后面】

例:alter table test add gender char(1) not null default ” after username;

3.alter table 表名 add 列名 列类型 列参数 first【把新列加在最前面】

例:alter table test add pid int not null default 0 first;

3.删除列

alter table 表名 drop 列名

例:alter table test drop pid;

4.修改列

1.alter table 表名 modify 列名 新类型 新参数【修改列类型】

例:alter table test modify gender char(4) not null default ”;

2.alter table 表名 change 旧列名 新列名 新类型 新参数【修改列名和列类型】

例:alter table test change pid uid int unsigned not null default 0;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: