Sử dụng SUM
hàm tính tổng count
và sử dụng DATE_FORMAT
chức năng chỉ nhóm theo ngày.
SELECT DATE_FORMAT(detectDate, '%Y-%m-%d') AS detectDate
,infection
,SUM(`COUNT`) as `count`
FROM myTable
GROUP BY DATE_FORMAT(detectDate, '%Y-%m-%d'), infection