我想计算mysql表中的行数,而不要包含重复的条目,
我可以distinct用count()吗?
distinct
count()
当然。
SELECT COUNT(DISTINCT column) FROM table;