The difference between order by and group by in SQL _mssql

Source: Internet
Author: User

Order by is understood in English as the sort of row, and the default is ascending. The ordered by must be followed by a list of field names, which can be multiple field names.

Group By is understood in English as grouping. You must have an aggregate function to work with, and you need at least one group label field when you use it.

What is "aggregate function"?

Like sum (), COUNT (), AVG (), etc. are "aggregate functions"

The purpose of using group by IS to subtotal data.

Generally like:

Select Unit name, COUNT (worker id), sum (Worker's salary) Form [table]

Group BY organization name

The result of this operation is to "unit name" as the classification of statistics units of the number of employees and total wages.

In the order in which the SQL command format is used, group by is preceded by.

The standard format for the Select command is as follows:

SELECT select_list 
[into new_table] from 
table_source 
[WHERE search_condition] 
[GROUP by GROUP_BY_EX Pression] 
[having search_condition]

The above is a small set of SQL to introduce the order by and group by the difference, I hope to help everyone, if you have any questions welcome to my message, small series will promptly reply to everyone!

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.