如果我有這兩個表:如何從兩個表中選擇?
table_user
Id name lname
1 Mark Brown
2 Martha Fox
table_score_start:
user_Id score
2 5
table_score_last:
user_Id score
1 3
2 4
我如何可以顯示下面的查詢結果呢?
ID名稱LNAME得分得分 1馬克·布朗3 2瑪莎·福克斯5 4
我試圖
SELECT table_user.Id, table_user.name, table_user.lname, table_score_start.score,
table_score_last.score FROM table_user, table_score_start, table_score_last
但它不工作
我也試過
SELECT table_user.Id, table_user.name, table_user.lname, table_score_start.score,
table_score_last.score FROM table_user, table_score_start, table_score_last WHERE table_user.Id = table_score_start.user_Id
我想要顯示所有的記錄認爲包括那些不是在一個或兩個表的表table_score_start和table_score_last
什麼是錯誤?或者只是空的結果? – powtac 2013-05-10 18:59:47
@ antonioj1015做一個好的支持者。開始接受答案。 – 2013-05-11 09:27:59
你解決了你的問題嗎? – 2013-06-12 22:42:00