Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的数据库中有一个表,其中有两列:
nvarchar(max)
int
现在用户可以在评分中输入最大数字 5 和最小数字 1 现在我要查询用户保存了多少次 1、多少次 2、多少次 3、多少次 4 和多少次 5
提前致谢。
SELECT Rating, COUNT(column_name) FROM TABLE GROUP BY Rating