Skip to content
Advertisement

How to multiply two columns and add a new column to the database?

Which customer id bought maximum products? (hint : get sales by multiplying product_quantity and price_per_item fields)

This is how the database looks like

After adding the sales column I am not able to perform the sum operation and getting the following error:

SELECT customerid, product_quantity * price_per_item as “sales”, SUM(sales) FROM questions GROUP BY customerid LIMIT 0, 1000
Error Code: 1054. Unknown column ‘sales’ in ‘field list’

Desired output

Advertisement

Answer

You cannot use an alias created in a select clause in the same select clause, because the expressions have no order. This means, that product_quantity * price_per_item as "sales" is not necessarily executed before SUM(sales), so the DBMS tells you that sales is unknown.

You don’t need the alias anyway, because with one result row per customer, what amount other than the sum would you want to show?

This doesn’t get you the top customer, though. But your query didn’t either 🙂 This is just an explanation what’s wrong in your original query.

Here are two options on how to build up on this to get the top customer(s):

Option 1 with a subquery (a CTE here):

Option 2 with an analytic function:

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement