我有兩個表MySQL的加入問題與在條件
Profile Status
profile_id |name | active status_id |profile_id|age
我需要的狀態,在描述文件「活動」是1,狀態年齡大於10
該查詢返回時在PROFILE_ID是匹配
Select * from
status LEFT JOIN ON status.profile_id = profile.profile_id
,但是當我把一個WHERE條件是不顯示任何
Select * from
status LEFT JOIN ON status.profile_id = profile.profile_id
where profile.active= 1 and status.age > 40
左連接是正確類型的連接嗎?
你錯過了第二個表名 – Phantom
它是10還是40? –
profile.enabled應該是profile.active – Ciaran