Jump to content

Optimising Script


esport

Recommended Posts

Hi Guys,

I have a query with a sub query in it. I runs extremely slow and i was wondering if there is an alternative way to optimise it.

I want to count the number sold between 2 dates and grouped by state.

 

Here is what I currently have

SELECT erg.Manufacturer
   (SELECT SUM(NumberSold) as num_sold FROM erg_data erg_vic WHERE erg_vic.DeliveryState = 'VIC' AND erg_vic.Manufacturer = erg.Manufacturer AND (DeliveryMonth='12' AND DeliveryYear='2010')) AS num_sales_vic ,
(SELECT SUM(NumberSold) as num_sold FROM erg_data erg erg_nsw WHERE erg_nsw.DeliveryState = 'NSW' AND erg_nsw.Manufacturer = erg.Manufacturer AND (DeliveryMonth='12' AND DeliveryYear='2010')) AS num_sales_nsw

FROM erg_data erg WHERE (DeliveryMonth='12' AND DeliveryYear='2010') GROUP BY erg.Manufacturer 

 

All information is from the 1 table.

How do i count and group at the same time without the sub queries.

Hope this makes sense.

Thanks in advance

 

Daniel

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.