SQL Server subquery Error

Source: Internet
Author: User
Tags table name

SQL Server in contrast to Oracle, if the subquery involved, then the corresponding table name, field must be named an alias to execute. There are two main types of situations:

1. Query SQL inside only a simple subquery does not contain grouping, sum wait Eg:elect * FROM (select com_id from company) so it will error, must add an alias, the layer of SELECT * from company here can add alias, You can also not add the correct: SELECT * FROM (select com_id to Company) a

2. Query SQL contains grouping, summation, or other functions when eg:select * FROM (select com_id, Count (com_id) from company Group by COM_ID) a here if you alias the outermost SQL , or the error will be added to company alias B select * FROM (select Com_id,count (com_id) to Company B Group by COM_ID) A that's not going to work because actually the count () function You can actually do it as a subquery, so you want to add the alias to count () correctly: SELECT * FROM (select com_id, COUNT (com_id) c from Company B Group by com_id) a

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.