如何用sql语句查询:在一个表中存在而另一个表中不存在的第一条记录?
有两个表tb1和tb2tb1:idnameindex1aa22bb43cc5tb2:idname21aaa2bbb3ccc4ddd5fff现在要查询的是数字在表tb2中的...
有两个表tb1 和 tb2
tb1:
id name index
1 aa 2
2 bb 4
3 cc 5
tb2:
id name2
1 aaa
2 bbb
3 ccc
4 ddd
5 fff
现在要查询的是数字在表tb2中的id列中存在,而在表tb1中的index列不存在的第一条记录?请高手帮忙呀!!
查询结果应当是:
1 aaa
也就是表tb2的第一列。 展开
tb1:
id name index
1 aa 2
2 bb 4
3 cc 5
tb2:
id name2
1 aaa
2 bbb
3 ccc
4 ddd
5 fff
现在要查询的是数字在表tb2中的id列中存在,而在表tb1中的index列不存在的第一条记录?请高手帮忙呀!!
查询结果应当是:
1 aaa
也就是表tb2的第一列。 展开
展开全部
select top 1 *
from tb2
where id not in (select [index] from tb1)
order by id
from tb2
where id not in (select [index] from tb1)
order by id
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询