程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> mysql SQL語句積累

mysql SQL語句積累

編輯:關於MYSQL數據庫
--重命名表

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;
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved