手机
当前位置:查字典教程网 >编程开发 >mysql数据库 >mysql SQL语句积累
mysql SQL语句积累
摘要:--重命名表renametablet_softwareporttosoftware_port;--建立外键altertablesoftwar...

--重命名表

rename table t_softwareport to software_port;

--建立外键

alter table software_port add constraint fk_software_port_softwareprocessid foreign key (softwareprocessid) references software_process (id) on delete restrict on update restrict;

--删除列

alter table software_type drop column upid, drop column orderid;

--修改列名

alter table software_process change software_id softwareid int(11) not null;

--更改列编码

alter table cms_contentbody modify column offical_site_name varchar(30) character set utf8 collate utf8_unicode_ci not null;

--增加列

alter table cms_flash add name varchar(30) not null unique;

【mysql SQL语句积累】相关文章:

mysql SELECT语句去除某个字段的重复信息

mysql 读写分离(实战篇)

精妙SQL语句收集

mysql分区之LIST分区讲解

mysql 设置查询缓存

SQL查询语句中的bool类型字段值的写法

mysql中is null语句的用法分享

MySQL replace函数替换字符串语句的用法

MySQL UDF调试方式debugview的相关方法

mysql 截取指定的两个字符串之间的内容

精品推荐
分类导航