MySQL动态添删改列字段命令
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-20 14:52:23 浏览: 评论:0
在mysql字段的操作通常是使用alert来进行如修改,增加,删除,改类型或修改自增ID等等,下面我整理了一些mysql字操作例子,一起来看看吧.
MySQL如何动态添删改列字段呢,SQL如下:
动态增加列字段:ALERT TABLE table1 add transactor varchar(10) not Null;
动态删除列字段:ALERT TABLE TableName drop column field_id;
动态修改列字段:ALERT TABLE table_name change old_field_name new_field_name field_type;
动态修改表结构:ALERT TABLE table_name MODIFY field_name field_type
创建表格后添加:alter table tablename add id int auto_increment primary key
设置自增字段初始值:alter table tablename auto_increment =x ;
设置主键:alter table tablename add primary key(field_name);
创建复合主键:
- create table tablename (
- --phpfensi.com
- studentno int,
- courseid int,
- score int,
- primary key (studentno,courseid) );
设置复合主键:alter table tablename add primary key (列1,列2,列3);
重命名表:alter table table_old_name rename table_new_name;
改变字段的类型:alter table tableName modify field_name field_type;
重命名字段:alter table tableName change old_field_name new_field_name new_field_type;
删除字段:alter table tableName drop column field_name;
增加一个新字段:alter table tableName add new_field_name field_type;
新增一个字段,默认值为0,非空:alter table tableName add new_field_name field_type not null default '0';
新增一个字段,默认值为0,非空,自增,主键:alter table tabelname add new_field_name field_type default 0 not null auto_increment,add primary key (new_field_name);
修改字段类型:alter table tablename change filed_name filed_name new_type;
Tags: MySQL动态添加 MySQL动态删除
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)