--重命名表
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数据库备份恢复
- Cobar_基于MySQL的分布式数据库服务中间件
- mysql 导出select语句结果到excel文件等
- MySQL 如何实现数据插入
- 彻底删除mysql服务(清理注册表)
- [工作积累] error: bad class file magic (cafebabe) or version (0033.0000)
- 在Node.js使用Promise的方式操作Mysql(续)
- docker-compose入门以及部署SpringBoot+Vue+Redis+Mysql(前后端分离项目)以若依前后端分离版为例
- MySql查询性能优化必知必会
- 在Node.js使用Promise的方式操作Mysql