使用SQL语句如何查询一个表中一个字段的值相同,另外一个字段的值不同?急!
展开全部
if
object_id('table1')
is
not
null
begin
drop
table
table1
end
go
create
table
table1
(a
int
,b
int)
go
insert
into
table1
select
1,1
union
select
1,2
union
select
1,3
union
select
2,1
go
SELECT
a.*
from
table1
a
where
exists(select
*
from
table1
b
where
a.a=b.a
and
a.b<>b.b
)
--记得及时采纳,今天任务还没完成,只差一个了
object_id('table1')
is
not
null
begin
drop
table
table1
end
go
create
table
table1
(a
int
,b
int)
go
insert
into
table1
select
1,1
union
select
1,2
union
select
1,3
union
select
2,1
go
SELECT
a.*
from
table1
a
where
exists(select
*
from
table1
b
where
a.a=b.a
and
a.b<>b.b
)
--记得及时采纳,今天任务还没完成,只差一个了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询