我正在嘗試爲我的板製作圖表。 但我不知道如何才能計算article_id的數量,只有當它不爲空。MySQL - 用於除零的數除外
在下面,如果article_id爲null,則不應該被計數。 我該如何解決這個問題?
mysql> select article_id, count(*) as count from board group by article_id order by count desc limit 3;
+------------+-------+
| article_id | count |
+------------+-------+
| NULL | 7 |
| 12 | 3 |
| 3 | 2 |
+------------+-------+
3 rows in set (0.00 sec)
非常感謝! – KimNR