我有一個表格,表格table1
,它有3列column1, column2 and column3
。MySQL中的左外連接與SUBSELECT
column1
和column2
是帶有2個其他表的FOREIGN KEY
。但column3
中的數據來自n個表格。
例如,讓我們考慮一下Facebook。要顯示活動,它可能會維護一張可能有user1 photoliked photo1
或user1 statusliked status1
的表格。因此在這種情況下,column3
不能是具有特定表格的FOREIGN KEY
。
現在有越來越真實數據的2種方法 -
一號路 -
SELECT user_id,
verb_id,
CASE WHEN verb_id = photoliked THEN
(SELECT photo_name FROM photos WHERE photo_id = column3) -- getting the desired data from the third column
WHEN verb_id = statusliked THEN
(SELECT status FROM statustable WHERE status_id = column3)
ELSE '' END AS performedon
FROM table1
JOIN table2 ON user_id = user_id -- joining the first column
JOIN table3 ON verb_id = verb_id -- joining the second column
第二個辦法 -
SELECT user_id,
verb_id,
CASE WHEN verb_id = photoliked THEN
p.photo_name
WHEN verb_id = statusliked THEN
s.status
ELSE '' END AS performedon
FROM table1
JOIN table2 ON user_id = user_id -- joining the first column
JOIN table3 ON verb_id = verb_id -- joining the second column
LEFT JOIN photos p ON p.photo_id = column3 -- joining the column3 with specific table
LEFT JOIN statustable s ON s.status_id = column3
問題
其中的2種方式更好地檢索數據? 和2個查詢中的哪個更便宜?
可能重複http://stackoverflow.com/a/10684539/1239506 –
不,它不是重複。在那個問題中,在WHERE子句中有一個IN,並且SUBSELECT不依賴主查詢的任何列。 – JHS
第二個查詢更好... –