用sql语句怎么求 一个表T中 字段A,和字段B数据都相同的 数据。

日期:2013-10-17 11:14:46 人气:1

用sql语句怎么求 一个表T中 字段A,和字段B数据都相同的 数据。

把表名换成你的表 select t1.* from 表名 t1, (select a,b from 表名 group by a,b having(count(*)>1)) t2 where t1.a=t2.a and t1.b=t2.b;
    A+
热门评论