MySQL SQL语句积累
2022-11-12 09:22:35
内容摘要
这篇文章主要为大家详细介绍了MySQL SQL语句积累,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!--重命名表rename table t_softwareport
文章正文
这篇文章主要为大家详细介绍了MySQL SQL语句积累,具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
--重命名表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语句积累的内容就先介绍到这里,更多相关文章的可以留意
代码注释