sql如何过滤到重复的数据 select DISTINCT(name) from 表A 这样可以把相同名称的过滤掉,但是这样只能查出
名称如果我想加其他的字段selectDISTINCT(name),sexfrom表A这样就过滤不掉了是不是我哪写错了求助...
名称 如果我想加其他的字段select DISTINCT(name),sex from 表A 这样 就过滤不掉了 是不是我哪写错了 求助
展开
6个回答
展开全部
ORACLE:
select * from scott.stu
union (all)重复的去掉[intersect把相同的取出来][minus显示不相同的数]
select * from stu
-----------------------------------------------------------------
显示相同的数据
select name from stu intersect select name from stu1;
删除重复记录
Delete from tablename where id not in (select max(id) from tablename group by col1,col2,...)
select * from scott.stu
union (all)重复的去掉[intersect把相同的取出来][minus显示不相同的数]
select * from stu
-----------------------------------------------------------------
显示相同的数据
select name from stu intersect select name from stu1;
删除重复记录
Delete from tablename where id not in (select max(id) from tablename group by col1,col2,...)
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
distinct 是对所有查询字段(一条记录一条记录)比较,相同只则保留一条
请关注 GROUP BY 子句语法
请关注 GROUP BY 子句语法
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果你想过滤全表就写 select distinct * from A
如果要过滤几个字段就写 select distinct name,sex from A
如果要过滤几个字段就写 select distinct name,sex from A
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select DISTINCT name,sex from 表A 只会过滤掉name 和sex 都重复的数据。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
多字段的话要用group by
select name,sex from A group by name,sex
select name,sex from A group by name,sex
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询