mysql出現的錯誤

來源:互聯網
上載者:User

標籤:

(一)ERROR 1005 (HY000): Can‘t create table ‘.\day19\user_role.frm‘ (errno: 121)

今天遇到的這個問題是因為建立了五張表,其中有兩張中間表,兩張中間表中都有一個共同的約束鍵,即一張表中的關鍵字被另外兩張中間表參考條件約束。所以另外兩張中間表中的引用要起不同的名字 

create table role_privilege(role_id varchar(40),privilege_id varchar(40),primary key(role_id,privilege_id),constraint role_id_FK foreign key(role_id) references role(id),constraint privilege_id_FK foreign  key(privilege_id) references privilege(id));create table user_role(role_id varchar(40),user_id varchar(40),primary key(role_id,user_id),constraint role_id_FK1 foreign key(role_id) references role(id),constraint user_id_FK foreign key(user_id) references user(id));
(二)ERROR 1005 (HY000): Can‘t create table ‘.\day17\employee.frm‘ (errno: 150)

1、外鍵的參考型別不一樣,主鍵是int外鍵是char 
2、找不到主表中 引用的列 
3、主鍵和外鍵的字元編碼不一致 
4.還有要建立外鍵的話,要先建立索引。沒有建立索引也會出錯。 

有時候沒有設定主鍵,會產生這種問題

mysql出現的錯誤

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.