的結果不同的數據我有一個非常簡單的查詢是這樣的:選擇基於計數
SELECT users.id, COUNT(others.id) as c
FROM users JOIN other ON users.id=others.user_id
GROUP BY users.id
我想這樣做是''
時c=0
替換c
數量。
例如,而不是像
# I have this
1, 0
2, 1
# I want c=0 replaced with ''
1, ''
2, 1
我怎麼能在MySQL做這行?
這是相當容易的,但請記住,第二列需要轉換到(var)字符類型和排序成爲一個問題。 NULL是否可以接受? – 2012-03-20 14:37:37