查询字段值出现多次的字段值
2014年10月22日14:00:10
select DISTINCT(CardID),count(*) from e_voidcard group by CardID HAVING count(*)>1;
在etc二代 MySQL3.23上测试通过
select NetNo,CardID,OBUID,count(*) from ETCBlackList32 group by NetNo,CardID,OBUID HAVING count(*)>1;
查询字段值出现多次的字段值
2014年10月22日14:00:10
select DISTINCT(CardID),count(*) from e_voidcard group by CardID HAVING count(*)>1;
在etc二代 MySQL3.23上测试通过
select NetNo,CardID,OBUID,count(*) from ETCBlackList32 group by NetNo,CardID,OBUID HAVING count(*)>1;