我有兩個表:MySql的選擇兩個表statment
用戶:
id name isSpecial
1 Tal 1
2 Jorden 0
3 John 1
4 Paige 0
詳情:
id userId Country zipCode
1 1 Israel 4564
2 3 US 554654
我想Jorden的名義來獲取用戶的所有數據或者如果isSpecial是1將如此顯示
結果:
id name Country zipCode
1 Tal Israel 4564
2 Jorden
3 John US 554654
我知道它應該是一個簡單的查詢,但我不能得到我想要的結果! 任何人都可以幫助我嗎?
use'left join' – 2014-09-03 10:05:14
'... where users.id = details.userId and(users.name ='Jorden'OR users.isSpecial = 1)' – JimmyB 2014-09-03 10:05:29