select * from (select * from a union all select * from b) T where name in (select name from a where name in( select name from b))
已经经过测试。
可以通过用该字段分组计数获得。例如:select col1,count(col1) as cnt
from t1 group by col1
这个查询可返回表t1的字段col1中每个值的重复次数。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)