討論串[SQL ] 請問一個查詢法
共 4 篇文章
首頁
上一頁
1
下一頁
尾頁

推噓1(1推 0噓 0→)留言1則,0人參與, 最新作者JYHuang (夏天到了,冷不起來了說)時間17年前 (2007/05/03 03:33), 編輯資訊
2
0
0
內容預覽:
我現在有兩個資料表. 一個是紀錄使用者資料 users. (user_name,user_id). 一個是紀錄使用者擁有的物件的資料 Albums. (aid,owner_id,Visbility ). Visibility為enum('Yes', 'No'). 我之前下. select user_
(還有200個字)

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者JYHuang (夏天到了,冷不起來了說)時間17年前 (2007/05/04 03:08), 編輯資訊
0
0
0
內容預覽:
不好意思,我今天想了一下午還是想不出來要怎麼用 @.@. 可以指點一下嗎?謝謝~. --. 發信站: 批踢踢實業坊(ptt.cc). ◆ From: 59.104.154.21.

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者flakchen (flak)時間17年前 (2007/05/04 10:24), 編輯資訊
1
0
0
內容預覽:
用LEFT JOIN. select users.user_name,count(*). from users. left join albums. on users.user_id=albums.owner_id. and albums.visibility=('Yes'). ^^. 注意最後一個

推噓0(0推 0噓 0→)留言0則,0人參與, 最新作者JYHuang (夏天到了,冷不起來了說)時間17年前 (2007/05/04 13:28), 編輯資訊
0
0
0
內容預覽:
非常感謝~~. 剛好我join這方法不太會用 XD. 不過我用在phpMyadmin上時會出現錯誤. 最後我是改成. select users.user_name,count(visibility). from users. left join albums. on users.user_id=al
首頁
上一頁
1
下一頁
尾頁