Skip to content
Advertisement

Get aggregated average values joining a second table and display them next to each value in first table

I have two tables which you can also find in the SQL fiddle:

The first table contains the Sales for each product.
The second table contains the Categories.


Now, I want to display all products and the average_sales_price_per_category next to each product.
The result should look like this:

I tried to go with the solution from this question but I think the OVER clause is not available in my MySQL version:

Error:

check the manual that corresponds to your MySQL server version for the right syntax to use near ‘over (partition BY c.Category_ID) / SUM(s.Sales_Value) over (partition BY c.Cate’ at line 4

What other SQL can I use to get the expected result?

Advertisement

Answer

For older version, you can use correlated sub-query :

Here is SQL Fiddle.

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