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. node.js - win10如何安装并使用babel?2. mysql新建字段时 timestamp NOT NULL DEFAULT ’0000-00-00 00:00:00’ 报错3. python - pip install出现下面图中的报错 什么原因?4. python - nginx为什么不能反代图片?5. 关于python爬虫的问题6. mysql5.7 安装后无法设置密码7. html5 - api.douban.com/v2/movie/in_theaters?start=0&count=3 不在以下合法域名列表中8. 微信端电子书翻页效果9. Browser-sync安装失败问题10. windows-7 - Win7中Vmware Workstatoin与Xampp中Apache服务器端口冲突?

网公网安备