SunQuest
           MySQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsDatabasesMySQL Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today!
  #1  
Old July 17th, 2000, 05:06 PM
caleb caleb is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2000
Location: San Angelo, TX, US
Posts: 3 caleb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I'm needing to make a list of all customers in my database who have not purchased anything. I can't seem to think of any way but a subquery (not yet implimented) to make this work.

I have the two queries:

1. SELECT DISTINCT custid from customers
2. SELECT DISTINCT custid from orders WHERE subtot > 0 and !voided

I basically need the difference of the two.

Thanks in advance.

Reply With Quote
  #2  
Old July 18th, 2000, 02:34 PM
rod k rod k is offline
Apprentice Deity
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237 rod k User rank is Private First Class (20 - 50 Reputation Level)rod k User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 m 8 sec
Reputation Power: 13
Send a message via AIM to rod k
You'll have to do two queries since mysql does not support sub queries.

If you are using PHP you can do this:

$result=mysql_query("select distinct custid from orders where subtot>0 and !voided");
while (list($data[])=mysql_fetch_row($result)){}
$listed_ids=implode(',',$data);

$result2=mysql_query("select distinct custid from customers where custid !(in('$listed_ids'))");
while (list($nosales[])=mysql_fetch_row($result2){}

This will return the array $nosales containing the custids that have no sales.

Reply With Quote
  #3  
Old July 18th, 2000, 02:53 PM
Kyuzo Kyuzo is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 1999
Location: Annapolis, Maryland US
Posts: 113 Kyuzo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 9
You may be able to get by with a LEFT JOIN, but since I don't know the layout of your tables, this may be a shot in the dark

> select customers.custid
> from customers
> LEFT JOIN orders on customers.custid=orders.custid
> WHERE orders.custid IS NULL;

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMySQL Help > Workaround for mySQL subquery?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway