MySQL LEFT JOIN on 多表链接问题

sql 语句:SELECT c.id,a.name aname,b.name bname,c.name cname,c.score_1 from the_cxsj_item_category a

LEFT JOIN the_cxsj_item_content b on b.category_id=a.id
LEFT JOIN the_cxsj_item_standard c on c.content_id=b.id
group by c.id,a.name ,b.name,c.name,c.score_1
数据多了一条,求大神解决!
图片说明

首先确定数据到底有没有错误的数据,导致连接多出一条
其次确定是是不是所有的表都是左连接,是不是有的表要用右连接或者内联

the_cxsj_item_category 看下这个表中有没有你多出来的这条数据,因为是左连接the_cxsj_item_category是主表,只要是这个表的符合where条件的都会被显示出来,就是你关联的表没有数据也显示