SQL Server median, standard deviation, average, and SQL Median

Source: Internet
Author: User

SQL Server median, standard deviation, average, and SQL Median

Create table examines ([e_id] [int] IDENTITY (200) not null, [dept_name] [nvarchar] () NULL, [ph_score] [int] NULL) SELECT dept_name, AVG (sp) as 'mediadata' FROM (SELECT dept_name, cast (ph_score as decimal (5, 2) sp, ROW_NUMBER () OVER (partition by dept_name order by ph_score ASC, e_id ASC) AS RowAsc, ROW_NUMBER () OVER (partition by dept_name order by ph_score DESC, e_id DESC) AS RowDesc FROM examines SOH) xWHERE RowAsc IN (RowDesc, RowDesc-1, rowDesc + 1) group by dept_nameORDER BY dept_name; select dept_name, STDEV (ph_score) as 'standard deviation 'from examines group by dept_nameselect dept_name, avg (ph_score) as 'average number' from examines group by dept_name

 

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.