sql 重复记录只显示一条 的问题
IDnametype1小刘12大李13小刘14小刘0我想搜出type为1的数据,重复的数据只显示一条搜索结果为:IDnametype1小刘12大李1求SQL语句。请写出我...
ID name type
1 小刘 1
2 大李 1
3 小刘 1
4 小刘 0
我想搜出 type 为 1 的数据,重复的数据只显示一条
搜索结果为:
ID name type
1 小刘 1
2 大李 1
求SQL语句。
请写出我要求的查询。
自增列 - 买ID - 卖ID - 是否成功
d_id - d_buy_id - d_sell_id - d_suc
1 - 5 - 9 - 1
2 - 5 - 8 - 0
3 - null - 8 - 0
4 - 6 - 8 - 0
我要的结果是,d_buy_id不为null,d_sell_id重复的只显示一条,d_suc=0 展开
1 小刘 1
2 大李 1
3 小刘 1
4 小刘 0
我想搜出 type 为 1 的数据,重复的数据只显示一条
搜索结果为:
ID name type
1 小刘 1
2 大李 1
求SQL语句。
请写出我要求的查询。
自增列 - 买ID - 卖ID - 是否成功
d_id - d_buy_id - d_sell_id - d_suc
1 - 5 - 9 - 1
2 - 5 - 8 - 0
3 - null - 8 - 0
4 - 6 - 8 - 0
我要的结果是,d_buy_id不为null,d_sell_id重复的只显示一条,d_suc=0 展开
7个回答
展开全部
只有2楼的才是正确的。。。
1楼的有一种情况没考虑进去。。
当表里有一条完全重复的数据的话就会查询出来。。
例如表里有两条:1 小刘 1 这样的数据。。。。 这样就会把这两条完全重复的数据查询出来~~~
2楼的正解。。。
3 4楼的完全没理解题意。。
-----补充-------- 是自增列那就好办多了
select * from tablename where d_id in(select min(id) from tablename where d_buy_id is not null and d_suc=0 group by d_sell_id)
1楼的有一种情况没考虑进去。。
当表里有一条完全重复的数据的话就会查询出来。。
例如表里有两条:1 小刘 1 这样的数据。。。。 这样就会把这两条完全重复的数据查询出来~~~
2楼的正解。。。
3 4楼的完全没理解题意。。
-----补充-------- 是自增列那就好办多了
select * from tablename where d_id in(select min(id) from tablename where d_buy_id is not null and d_suc=0 group by d_sell_id)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select min(id) id,name,type from table_name where type=1 group by name,type
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select
t.kmmc, sum(t.ncj) as ncj, sum(t.ncd) as ncd
from kmdm t
group by t.kmmc 有问题,请追问。
t.kmmc, sum(t.ncj) as ncj, sum(t.ncd) as ncd
from kmdm t
group by t.kmmc 有问题,请追问。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from tablename where id in(select min(id) from tablename where type=1 group by name)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不用那么麻烦吧。
select distinct * from table where type=1
select distinct * from table where type=1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询