mysql 如何建立外键

 最新的成功写法,不要每次都来找了:

alter table tb_car_profile  add constraint fk_carid foreign key (carid) references tb_car (carId)

 

 这是修改时候的写法:

alter table t_items add index FKA06D2435600CB070 (itemUnit), add constraint FKA06D2435600CB070 foreign key (itemUnit) references t_data_dict (id)

 

这是创建时候的写法:

create table authorities
(
username varchar(50) not null,
authority varchar(50) not null,
constraint fk_authorities_users foreign key(username) references users(username)
);

 

 

 ------------------------------------------------------------

 

删除外键:

alter table userrole drop foreign key userrole_ibfk_1;

 

注意到:语法如上,但是userrole_ibfk_1不是外键字段,而是constraint的名字。

 

再次注意到:在mysql中,如果想通过脚本添加外键,必须先建立一个字段,然后再此字段上添加约束才行。

企图直接通过新建约束就能添加外键的话,会提示字段不存在。

 

 参考链接:http://bbs.phpchina.com/thread-188045-1-1.html

http://hi.baidu.com/fei07100107/item/3cbaa812bb63678989a95648

你可能感兴趣的:(mysql)