1

SELECT DISTINCT name FROM table用来获取列中出现的具有不同名称的表。我怎样才能得到一个额外的列来返回这个特定名称出现在列上的次数?

4

1 回答 1

6
select name, count(1) from table
group by name;
于 2011-09-15T21:27:02.287 回答