为什么子查询不能包含order by
展开全部
除非是Top N, 否则在子查询里面使用Order by 是没有什么意义的, 到了父查询顺序又乱了
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以用,需要与top N一起用 如
select * from table1 where ID in(select top 10 ID from table1)
返回全表,用order by 子查询没有意义,用时要用
select TOP(100) PERCENT
select * from table1 where ID in(select top 10 ID from table1)
返回全表,用order by 子查询没有意义,用时要用
select TOP(100) PERCENT
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以用,需要与top N一起用 如
select * from table1 where ID in(select top 10 ID from table1)
返回全表,用order by 子查询没有意义,用时要用
select TOP(100) PERCENT
select * from table1 where ID in(select top 10 ID from table1)
返回全表,用order by 子查询没有意义,用时要用
select TOP(100) PERCENT
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询