gpt4 book ai didi

python - web2py 数据库中的外键

转载 作者:太空狗 更新时间:2023-10-30 00:52:08 25 4
gpt4 key购买 nike

我使用带有两个表的 web2py 框架。如何将第一个表中的一个字段引用到第二个表中?

最佳答案

这是来自 web2py chapter on databases 的关于表关系和 JOIN 的部分

To illustrate how to implement one to many relations with the web2py DAL, define another table "dog" that refers to the table "person" which we redefine here:

>>> db.define_table('person',
Field('name'),
format='%(name)s')
>>> db.define_table('dog',
Field('name'),
Field('owner', db.person),
format='%(name)s')

如果您要查找该引用资料中未涵盖的内容,则需要提供更多信息。

关于python - web2py 数据库中的外键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5429710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com