Unless TOP or for xml is also specified, the order by clause is in the view, inline function, derived table, subquery, xmlorder

Source: Internet
Author: User

Unless TOP or for xml is also specified, the order by clause is in the view, inline function, derived table, subquery, xmlorder

Error:

Unless TOP or for xml is also specified, the order by clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions.


As long as we add the following to the nested subquery View:Top 100 percentYou can.

For example:

Select * from (select top 100 percent * from tb order by col desc) as a order by col desc



For SQL statement query, I haven't thought about the use of TOP and ORDER BY statements for a long time.

One sentence is enough.
Select top 100 field 1 from table 1 where field 1 like '2% 'order by Field 2
Or
Select top 100 a. Field 1 FROM (select * from table 1 where field 1 like '2% 'order by Field 2) as a order by a. Field 1

Sorting of SQL query results

First, the statement is incorrect. Unless TOP or for xml is also specified, the order by clause is invalid in views, inline functions, derived tables, subqueries, and common table expressions.
Second, to answer your question, the result is not output according to the sorting result in the subquery. The statement is as follows:
Select * from (select TOP 100 PERCENT * from table1 as a order by A. field1 DESC) newTable
The final result is equivalent
Select * from table1 AS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.