Mysql应用mysql SQL语句积累
发布时间:2020-12-12 01:19:04 所属栏目:MySql教程 来源:网络整理
导读:《Mysql应用mysql SQL语句积累》要点: 本文介绍了Mysql应用mysql SQL语句积累,希望对您有用。如果有疑问,可以联系我们。 --重命名表 rename table t_softwareport to software_port; --建立外键 alter table software_port add constraint fk_software_po
《Mysql应用mysql SQL语句积累》要点: 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; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |