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 > Data Access, Manipulation & Batch Languages > ANSI SQL > Query within a query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-21-03, 17:38
TenKracer TenKracer is offline
Registered User
 
Join Date: Oct 2003
Location: New York/New Zealand
Posts: 8
Query within a query

Hi, I am having some logic trouble... I think I want to create a Left Join but I am not sure here is my query...

SELECT Nature.Nature, t.Apr
FROM Nature LEFT JOIN (SELECT NatureCountPerMonth.ComplaintNumber AS Apr, NatureCountPerMonth.Nature FROM NatureCountPerMonth WHERE Month = 4 AS t) ON Nature.Nature = t.Nature

But it doesn't work. How do I nest queries within queries? Is it a syntax problem or is this something that can't be done?

Thanks in advance for any help,
Reply With Quote
  #2 (permalink)  
Old 10-22-03, 15:46
dbmadcap dbmadcap is offline
Registered User
 
Join Date: May 2003
Posts: 87
Re: Query within a query

Can you explain what you want to achieve?

Did you try this? Does this sql work?

Code:
SELECT Nature.Nature, t.Apr
FROM Nature, 
  (SELECT NatureCountPerMonth.ComplaintNumber AS Apr,
               NatureCountPerMonth.Nature 
    FROM NatureCountPerMonth WHERE Month = 4) t
where Nature.Nature = t.Nature;
Reply With Quote
  #3 (permalink)  
Old 10-22-03, 17:11
TenKracer TenKracer is offline
Registered User
 
Join Date: Oct 2003
Location: New York/New Zealand
Posts: 8
Cheers,
That would be it... I figured you would change the name of a table the same way you change a field. This is what I needed.

Thanks,
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