我有下表
mysql> select * from abc;
+---+------+------+
| A | B | C |
+---+------+------+
| 2 | 2 | 2 |
| 1 | 2 | 3 |
| 3 | 3 | 2 |
| 4 | 3 | 3 |
+---+------+------+
4 rows in set (0.00 sec)
mysql> select count(distinct *)
-> from abc
-> group by a;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '*)
from abc
group by a' at line 1
任何人都可以知道上述查询的正确语法吗?