If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Problem with SQL Query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-18-06, 08:32
hawkseye hawkseye is offline
Registered User
 
Join Date: Dec 2004
Posts: 6
Red face Problem with SQL Query

Below is my query with which im having some problems. What i want is that select all customers from customerInfo table who have more than 0 ads in adIno table and count how many ads they have.
Now the problem is that my query select all records even those customers who have 0 ads. Please help me

"SELECT c.customerID, c.storeName, c.Address, c.State, c.City, count(a.adID) as noOfAds
FROM customerInfo c left join adInfo a ON c.customerID = a.customerID
WHERE c.`storeName` IS NOT NULL GROUP BY c.customerID ORDER BY c.storeName ASC"
Reply With Quote
  #2 (permalink)  
Old 02-18-06, 08:46
hawkseye hawkseye is offline
Registered User
 
Join Date: Dec 2004
Posts: 6
im using mysql version 4.0.23
Reply With Quote
  #3 (permalink)  
Old 02-18-06, 10:26
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
1. change LEFT OUTER to INNER
2. fix your incorrect GROUP BY
Code:
SELECT c.customerID
     , c.storeName
     , c.Address
     , c.State
     , c.City
     , count(a.adID) as noOfAds 
  FROM customerInfo c 
inner
  join adInfo a 
    ON c.customerID = a.customerID 
 WHERE c.`storeName` IS NOT NULL 
GROUP 
    BY c.customerID
     , c.storeName
     , c.Address
     , c.State
     , c.City
ORDER 
    BY c.storeName ASC
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On