SQL SERVER – Tips from the SQL Joes 2 Pros Development Series – Advanced Aggregates with the Over Clause – Day 11 of 35

Answer simple quiz at the end of the blog post and –
Every day one winner from India will get Joes 2 Pros Volume 2.
Every day one winner from United States will get Joes 2 Pros Volume 2.

Partitioning with the Over Clause (Part 2)

Yesterday we learned how the over clause can be used to compare your number against the overall aggregated number for an entire result set. Sometimes you might want your number to be compared against its category and not all records from a table. For example I don’t get any joy in saying I never won the state championship in Greco Roman wrestling. On the other hand with great joy I tell people was the Tacoma City Champion. By partitioning the sport down into City instead of the entire country or state my ranking is much better.

Businesses might have other reasons for partitioning a group. Let’s use an example of schools where they see most of them getting a drop in attendance during the summer time. Comparing an attendance trend from spring to summer would not show an uptrend even if your school is growing year after year. It makes more sense to compare this summer to last summer to find a trend then to compare the spring and summer where you always see a drop. Whatever your reason you can get a total by a level of your choosing with the OVER() clause. Now let’s try an example using the aggregate function COUNT( ) with the OVER( ) clause. We’ll start with a simple query on the Employee table. Here we see Alex Adams is just 1 employee out of 13.  In fact each employee is one of 13 in this example.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - Advanced Aggregates with the Over Clause - Day 11 of 35 j2p_11_1

Now let’s look at Alex Adams. He works in Location 1. How many of JProCo’s employees are in Location 1 (Seattle)? And how many of the total employees work in Boston? Alongside the existing table records, we want to add a column showing the count of employees at each location. Recall that blank parentheses cause OVER( ) to apply the aggregation across all rows of a query. Our instruction to show employee count at each location means we don’t just want a total of all locations in our query – we already have that data displayed in the TotalEmployees column. We must include an argument inside the parentheses. PARTITION BY divides the result set into partitions. In this case we’ve added a partition by LocationID.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - Advanced Aggregates with the Over Clause - Day 11 of 35 j2p_11_2

Similar to the behavior of GROUP BY, the command to PARTITION BY LocationID takes the LocationID for each employee and counts the number of records in that group which shares the same LocationID. Thus, each of the Seattle employees shows a 7 for LocationCount. The Boston employees have a LocationCount of 3, and the Spokane records have LocationCount of 2. John Marshbank shows LocationCount of 1, since he’s the only one with a null LocationID.

Since Seattle has 7 of the total 13 employees, we can guesstimate that just over ½ (or more than 50%) of JProCo employees work in Seattle (LocationID 1). Let’s run the query and check the results.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - Advanced Aggregates with the Over Clause - Day 11 of 35 j2p_11_1

Our result set shows no ratios and all 0’s. This is because our calculation involved only integers. (The grant amount data was expressed in decimal form.) Rather than writing additional code using CAST, we’ll use a trick that works with many programming languages. Multiply the numerator by 1.0 to make each figure display as a decimal instead of an integer. Multiply the numerator by 1.0, so results appear as decimals instead of integers.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - Advanced Aggregates with the Over Clause - Day 11 of 35 j2p_11_4

This result is a big improvement – each result is now in decimal form. The Seattle occupancy rate is about 53.85%.  Now multiply instead by 100 so the values show as percentages, like we did with the Grant example. In this instance be sure to multiply by 100.0, so the values show as decimals and not integers. 

Finally, polish your report by adding the descriptive title Pct in place of the blank column header. Sort your report in descending order of occupancy (Pct) and LastName.

SQL SERVER - Tips from the SQL Joes 2 Pros Development Series - Advanced Aggregates with the Over Clause - Day 11 of 35 j2p_11_5

Note: If you want to setup the sample JProCo database on your system you can watch this video. For this post you will want to run the SQLQueriesChapter5.0Setup.sql script from Volume 2.

Question 11

Q 11) You have a table named CurrentProducts. The table contains a column named Category. You need to make a T-SQL statement that calculates the percentage (with decimals) of products in each product Category. Which query should you use?

  1. SELECT DISTINCT Category,
    COUNT(*) OVER (PARTITION BY Category)*100/ COUNT(*) OVER() as PctCategory
    FROM CurrentProducts
  2. SELECT DISTINCT Category,
    COUNT(*) OVER (PARTITION BY Category)*100.0/ COUNT(*) OVER() as PctCategory
    FROM CurrentProducts
  3. SELECT DISTINCT Category,
    COUNT(*) OVER ( )*100.0/ COUNT(*) OVER(PARTITION BY Category) as PctCategory
    FROM CurrentProducts

Rules:

Please leave your answer in comment section below with correct option, explanation and your country of resident.
Every day one winner will be announced from United States.
Every day one winner will be announced from India.
A valid answer must contain country of residence of answerer.
Please check my facebook page for winners name and correct answer.
Winner from United States will get Joes 2 Pros Volume 2.
Winner from India will get Joes 2 Pros Volume 2.
The contest is open till next blog post shows up at which is next day GTM+2.5.

Reference:  Pinal Dave (https://blog.sqlauthority.com)

Joes 2 Pros, SQL Scripts
Previous Post
SQL SERVER – Who needs ETL Version Control?
Next Post
SQL SERVER – SafePeak – The Plug and Play Immediate Acceleration Solution

Related Posts

108 Comments. Leave new

  • Nikhil Mahajan
    August 17, 2011 7:59 am

    Correct answer is answer 2 ie..

    2.SELECT DISTINCT Category,
    COUNT(*) OVER (PARTITION BY Category)*100.0/ COUNT(*) OVER() as PctCategory
    FROM CurrentProducts

    because

    Option no 1–> displays categories with percentages in integer values.
    Option no2 –> displays categories with percentages in decimal values.
    Option no 3 –> displays incorrect results.

    India

    Reply
  • Sivaguru Umapathy
    August 17, 2011 9:50 pm

    Correct Answer 2

    SELECT DISTINCT Category,
    COUNT(*) OVER (PARTITION BY Category)*100.0/ COUNT(*) OVER() as PctCategory
    FROM CurrentProducts

    Wrong Answer 1 : your are meansed Percentage with decimals, this query division value integer and count result value also integer , so result should be integer
    Wrong Answer 3: this query it will provide invalid result set as the numerator and denominator are interchanged.

    Sivaguru.u
    India

    Reply
  • Answer is #2:
    SELECT DISTINCT Category,
    COUNT(*) OVER (PARTITION BY Category)*100.0/ COUNT(*) OVER() as PctCategory
    FROM CurrentProducts

    Thanks,
    Wayne (USA)

    Reply
  • Thanks for the post. Really helpful.

    Reply
  • Dear Pinal,

    I think you have the wrong picture before this text : “Our result set shows no ratios and all 0’s.”

    Thank you for all the extremely useful content.

    Cheers, Spyros

    Reply

Leave a Reply