web2py 数据库中的外键
我使用带有两个表的 web2py 框架。如何将第一个表中的一个字段引用到第二个表中?
I use web2py framework with two tables. How can I refer one field from first table into second table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅本书的数据库抽象层章节,特别是关于一对多关系。如果您使用的是预先存在的/旧版数据库,请参阅 旧数据库和键控表。另外,这里有一个示例。
See The Database Abstraction Layer chapter of the book, in particular, the section on One to Many Relations. If you're working with a pre-existing/legacy database, see Legacy Databases and Keyed Tables. Also, here's an example.
以下是 web2py 关于数据库的章节中有关表关系和 JOIN 的部分
如果您正在寻找未涵盖的内容,则需要提供更多信息在该参考文献中。
Here's the section on table relationships and JOINs from the web2py chapter on databases
You'll need to provide more information if you are looking for something that's not covered in that reference.