sql 一个表table(a,b,c,d)其中a,b,c为主键,找出a,c相同,不同的b,d是否相同
2个回答
展开全部
select * from table where a=c //a,c相同
union
select * from table where a<>c and b=d //a,c不同,b,d相同
union
select * from table where a<>c and b<>d //a,c不同,b,d不同
是这个意思吗
union
select * from table where a<>c and b=d //a,c不同,b,d相同
union
select * from table where a<>c and b<>d //a,c不同,b,d不同
是这个意思吗
更多追问追答
追问
不是,
a b c d
a1 b1 c1 d1
a1 b2 c1 d1
a2 b1 c3 d2
a4 b2 c4 d2
a4 b1 c4 d1
b列只有b1和b2两个值,理想结果找出a4那两个列
追答
还是看不懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要的是这样吧
tFFF_1 这个是我建的表
select t1.*
from tFFF_1 t1,
tFFF_1 t2
where t1.a=t2.a
and t1.b<>t2.b
and t1.c=t2.c
and t1.d<>t2.d
tFFF_1 这个是我建的表
select t1.*
from tFFF_1 t1,
tFFF_1 t2
where t1.a=t2.a
and t1.b<>t2.b
and t1.c=t2.c
and t1.d<>t2.d
追问
select t1.*
from (SELECT * FROMtFFF_1 WHERE B=B1) t1,
(SELECT * FROMtFFF_1 WHERE B=B2) t2
where t1.a=t2.a
and t1.c=t2.c
and t1.dt2.d
但是在sybase中子查询不能作为一个表用,郁闷。。。。
追答
table中的数据是不是下面这样的
a b c d
a1 b1 c1 d1
a1 b2 c1 d1
a2 b1 c3 d2
a4 b2 c4 d2
a4 b1 c4 d1
select t1.*
from table t1,
table t2
where t1.a=t2.a
and t1.bt2.b
and t1.c=t2.c
and t1.dt2.d
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询