加入我无法弄清楚的查询问题

发布于 2024-12-03 17:18:10 字数 576 浏览 0 评论 0原文

所以我有三个表:

Table Place:  _id autoincrement not null primary key, name TEXT,place TEXT
Table Food: _id autoincrement not null primary key, food TEXT
Table Person:  _id autoincrement not null primary key, personName TEXT, PLACE_ID INTEGER NOT NULL, FOOD_ID INTEGER

我想提取所有食物和地点信息,但是,如 person 表中所述,FOOD_ID 可以为空值。假设数据库已完全正确填充。我该如何查询这个?我尝试以下查询:

select * from Person,Food,Place where Place._id = Person.PLACE_ID and if not null Person.Food_id Food._id = Person.FOOD_ID

但这不起作用!

任何帮助将不胜感激!

谢谢! 乔恩

So I have three tables:

Table Place:  _id autoincrement not null primary key, name TEXT,place TEXT
Table Food: _id autoincrement not null primary key, food TEXT
Table Person:  _id autoincrement not null primary key, personName TEXT, PLACE_ID INTEGER NOT NULL, FOOD_ID INTEGER

I want to pull all the food and Place information however, as noted in the person table, there can be a null value for FOOD_ID. Assume the database is fully populated correctly. How do I query this? I tried to following query:

select * from Person,Food,Place where Place._id = Person.PLACE_ID and if not null Person.Food_id Food._id = Person.FOOD_ID

But that doesn't work!

Any help would be greatly appreciated!

Thanks!
Jon

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

活雷疯 2024-12-10 17:18:10
SELECT *
FROM Person p
INNER JOIN Place pl
    ON p.PLACE_ID = pl._id
LEFT OUTER JOIN Food f
    ON p.FOOD_ID = f._id

请记住,即使右表中没有匹配的行,LEFT OUTER 连接也会返回左表(本例中为 Person)中的所有行。右侧表的值全部为 NULL。

SELECT *
FROM Person p
INNER JOIN Place pl
    ON p.PLACE_ID = pl._id
LEFT OUTER JOIN Food f
    ON p.FOOD_ID = f._id

Remember, a LEFT OUTER join returns ALL rows in the left table (Person in this case) even when there are no matching rows in the right table. The values for the right side table will all be NULL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文