gpt4 book ai didi

MYSQL - 表 1 和表 2 中所有可能性的所有行

转载 作者:可可西里 更新时间:2023-11-01 08:06:21 25 4
gpt4 key购买 nike

表用户

id, name
1, Jay Bob
2, An Other

表格页面

id, name, html
1, 'Welcome', 'Welcome to this page'
2, 'Goodbye', 'Thanks for visiting'

表 user_pages ** 存储用户特定版本的页面 **

user_id, page_id, html
1, 1, 'User id 1 Welcome page'

我基本上需要一个查询,它会返回下面的数据集——即使没有数据存在,也可以为每种可能性返回一行。

数据集

user_id, page_id, html
1, 1, 'User is 1 Welcome page'
1, 2, ''
2, 1, ''
2, 2, ''

最佳答案

我认为最清晰的方法是使用子查询和cross join来创建驱动表:

select driver.user_id, driver.page_id, up.html
from (select u.id as user_id, p.id as page_id
from users u cross join
pages p
) driver left outer join
user_pages up
on up.user_id = driver.user_id and up.page_id = driver.page_id;

重要的是 select 子句中的 user_idpage_id 来自驱动表,而不是来自 user_pages,因为后者可能是NULL

关于MYSQL - 表 1 和表 2 中所有可能性的所有行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15885541/

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