select title,sum(click) from table_name group by title
select sum(_click),_title from table_test group by(_title);
select _title,sum(_click) from 表名 group by _title
select count(1),_title,sum(_click) from table_test group by(_title);