mysqlSQL语句积累

春季来好快,悄无声息不知不觉中,草儿绿了,枝条发芽了,遍地野花油菜花开灿烂多姿,一切沐浴着春晨曙光,春风中摇弋轻摆,仿佛少女轻歌曼舞,楚楚动人。
--重命名表 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;

以上就是mysqlSQL语句积累。学问渊博的人,懂了还要问;学问浅薄的人,不懂也不问。更多关于mysqlSQL语句积累请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
MySQLSQL语句分析与查询优化详解

MysqlSql语句注释大全

mysqlsql语句性能调优简单实例

mysqlsql语句隐藏手机号码中间四位的方法

MySqlSql优化技巧分享