python - Django model foreignKey Reference
問題描述
我期待用django創建數據庫的時候實現以下效果
表1
CREATE TABLE Persons(Id_P int NOT NULL,LastName varchar(255) NOT NULL,FirstName varchar(255),Address varchar(255),City varchar(255),UNIQUE (Id_P),PRIMARY KEY (LastName))
表2
CREATE TABLE Orders(Id_O int NOT NULL,OrderNo int NOT NULL,Id_P int,PRIMARY KEY (Id_O),FOREIGN KEY (Id_P) REFERENCES Persons(Id_P))
表2的外鍵關聯到表一的Id_P,而不是LastName
但在django中
Id_P = models.ForeignKey(’Persons’,db_column=’Id_P’)
這樣寫,django會自動關聯到Persons表的主鍵,而非我期待的Id_P
請教一下,要如何改寫,才能實現我的預期效果?
問題解答
回答1:看來db_column參數不能指定使用哪個字段作外鍵(估計樓主使用過sqlalchemy),
查看下django ForeignKey 文檔有這個參數
ForeignKey.to_fieldThe field on the related object that the relation is to. By default, Django uses the primary key of the related object. If you reference a different field, that field must have unique=True.
所以改db_column為to_field就行了
相關文章:
1. macos - 無法source activate python272. 運行python程序時出現“應用程序發生異常”的內存錯誤?3. javascript - 微信 H5 授權 返回鍵4. github - 求助大神啊,win10 git clone error,折騰了幾天都不行,以前原本好好的,突然就這樣了5. android - 如何實現QQ pad 點擊右側輸入框,只頂右側的布局,左側布局不動6. javascript - npm run build后調用api返回index.html7. css - 關于background-position百分比的問題?8. java - 處理數據關聯關系,使用數據庫表外鍵和代碼內維護相比的優缺點?9. javascript - node得到req不能得到boolean10. 小白學python的問題 關于%d和%s的區別

網公網安備