一道面试题表A中有字段B 其中有重复值(内容) 请计算出重复值(内容)是什么? 有几个?[解决办法]select B,count(B) from A group by B having count(B)> 1