select *, count(distinct Victory,Flat,Negative) from sporttery group by Victory,Flat,Negative;
// 更简单的一种
select * from sporttery group by Victory,Flat,Negative;
// 和where嵌套
select * from pinnacle where MatchName=? and HomeTeam=? and AwayTeam=? group by Victory,Flat,Negative;