如何選擇與條件2表並顯示所有數據如何選擇2表狀況並顯示所有數據
store_profile
id + store_name
1 | Accessorize.me
2 | Active IT
3 | Edushop
4 | Gift2Kids
5 | Heavyarm
6 | Bamboo
store_fee
id + store_id + date_end
1 | 1 | 27-6-2013
2 | 2 | 29-8-2013
3 | 3 | 02-6-2013
4 | 4 | 20-4-2013
下面是我以前的查詢
$query = "select sp.id, sp.store_name, sf.id, sf.store_id, sf.date_end from store_profile sp, store_fee sf where sf.store_id=sp.id"
,結果是一樣的東西這樣的:
1 | Accessorize.me 27-6-2013
2 | Active IT 29-8-2013
3 | Edushop 02-6-2013
4 | Gift2Kids 20-4-2013
,但我想是顯示所有的商店名稱包括date_end
但如果n Ødate_end
仍然可以顯示商店名稱與空date_end
感謝@Explosion丸簡單,工作對我來說.. – rusly 2013-02-20 02:19:31