多选题 : 现在需要查询unit表中,在information表中有的unit_name,是否存在重复的数据。以下哪些逻辑可以实现()
(A)selectname,count(*)fromunituwhereu.namein(selectunit_namefrominformationIwherei.unit_name=u.name)groupbyu.namehavingcount(*)>1;
(B)selectname,count(1)fromunitujoininformationionu.unit_name=i.unit_namegroupbynamewherecount(1)>1;
(C)selectname,count(*)fromunituwhereexists(select1frominformationIwherei.unit_name=u.name)groupbynamehavingcount(*)>1;
(D)selectname,count(1)fromunitujoininformationIonu.unit_name=i.unit_name;
参考答案
继续答题:下一题