sql从同一表里查询多条不同条件的数据
请问如何一次从表“A”查询三个数据:1.a_id,a_title,a_name条件:a_id=102.top1a_id,a_title条件:a_id>103.top1a_...
请问如何一次从表“A”查询三个数据:
1. a_id, a_title, a_name 条件:a_id=10
2. top 1 a_id, a_title 条件:a_id>10
3. top 1 a_id, a_title 条件:a_id<10
请问如何写这个查询语句,谢谢!
如果按shutao917所说的union all 的方法会提示:关键字‘union’附近有语法错误! 展开
1. a_id, a_title, a_name 条件:a_id=10
2. top 1 a_id, a_title 条件:a_id>10
3. top 1 a_id, a_title 条件:a_id<10
请问如何写这个查询语句,谢谢!
如果按shutao917所说的union all 的方法会提示:关键字‘union’附近有语法错误! 展开
展开全部
select a_id, a_title, a_name from A where a_id=10
select top 1 a_id, a_title from A where a_id>10
select top 1 a_id, a_title from A where a_id<10
select top 1 a_id, a_title from A where a_id>10
select top 1 a_id, a_title from A where a_id<10
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select a_id, a_title, a_name from A where a_id=10
union all
select top 1 a_id, a_title, a_name from A where a_id>10
union all
select top 1 a_id, a_title, a_name from A where a_id<10
union all
select top 1 a_id, a_title, a_name from A where a_id>10
union all
select top 1 a_id, a_title, a_name from A where a_id<10
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select * from A where a_id='10'
select * from A where a_id>'10'
select * from A where a_id<'10'
select * from A where a_id>'10'
select * from A where a_id<'10'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询