SELECT comment_text,
Count(*) AS num
FROM comment
WHERE ... |
3 years ago |
select distinct comment_text, count(*) as num from comment where... |
3 years ago |
select distinct comment_text, count(*) as num from comment where... |
3 years ago |
select distinct comment_text, count(*) from comment where comment_text like... |
3 years ago |