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, ''
我認爲這是正確的,+1 – fthiella 2013-04-08 18:21:23
這確實是我所看到的,只是需要在ON子句中使用驅動程序這一切工作>選擇driver.user_id,driver.page_id,up.html > from(選擇u.id as user_id,p.id as page_id > from users u cross join > pages p >)driver left outer加入 > user_pages up > on.user_id = driver.user_id and up.page_id = driver.page_id; – neilakapete 2013-04-08 18:35:24