SQL Workshop - Selecting columns without a non-aggregate column
Written by Nikos Vaggalis   
Thursday, 19 December 2013
Article Index
SQL Workshop - Selecting columns without a non-aggregate column
The Solution

That’s happening because column m.unit is used in the SELECT clause but not in the GROUP BY clause.

This is a perfectly valid and reasonable response from our DBMS, but in this exceptional case, selecting columns without including a non-aggregate column in the group by clause would be handy.

But this can’t happen if we are not explicit in what we ask for :

SELECT
 a.account_category,
 a.account_id,
 sum (b.value) as summed_amount 
FROM (
 SELECT m.material_id, m.year
 CASE 

  WHEN m.unit = 'PIECES'
   THEN m.mean_value * r.quantity * m.ratio 

   ELSE m.mean_value * r.quantity / m.ratio
  END as value
 from materials m, requests r
 where r.year = '1/1/13' and
       r.year = m.year and
       r.material_id = m.material_id) b,
                              accounts a
WHERE
    a.material_id = b.material_id and
    a.year = b.year
GROUP BY account_category, account_id

This works because of an inline view (marked in red) which acts as a temporary table holding the value for each row :

 

Result Set 3

Material_id

Year

Value

TX002

1/1/2013

$360

TX003

1/1/2013

$680.01

 

and exporting material_id and year to the outside scope, both of which will subsequently used for joining with the Accounts table of the outer query ( a.material_id = b.material_id and a.year = b.year), producing :

 

Result Set 4

Account_category

Account_id

Value

01

220201511

$360

01

220201511

$680.01

 

and finally grouped into :

 

Result Set 5

Account_category

Account_id

Summed_amount

01

220201511

$1040.01


enabling us to answer questions like “how much money on average, did the consumption of fruit cost us this year?”, so that we can estimate how much money we should reserve for next year’s purchases.

Other SQL Workshops

SQL Workshop - Selecting columns without including a
non-aggregate column in the group by clause

SQL Workshop - Subselects And Join

 

More SQL Workshop soon!

Related Articles

SQL Server: Quickly get row counts for tables, heaps, indexes, and partitions

The First Things I Look At On A SQL Server – Part 1

The First Things I Look At On A SQL Server – Part 2

A Generic SQL Server Compression Utility

Codd and his Rules      

 

To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, FacebookGoogle+ or Linkedin,  or sign up for our weekly newsletter.

 SQLW

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Banner


VLOGGER - AI Does Talking Heads
24/03/2024

Developed by Google researchers VLOGGER AI is a system that can create realistic videos of people talking and moving from a single still image and an audio clip as input. 



The Appeal of Google Summer of Code
21/03/2024

With the list of participating organizations now published, it is time for would-be contributors to select among them and apply for Google Summer of Code (GSoC). Rust has joined in the program fo [ ... ]


More News

 



Last Updated ( Thursday, 06 September 2018 )