Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

The Database Forum


You are currently viewing our The Database Forum as a guest. Please register to participate.
Login



Reply
Old 09-04-2006, 06:26 PM Sql Help
Novice Talker

Posts: 7
Trades: 0
Hi Everyone,

I have a question regarding a SQL Query. I am new to Sql programming.

my query is:
SELECT
M.MeetingCode,
M.City AS MeetingCity,
M.State AS MeetingState,
Count(*) as NoofRSVP
FROM
Programs P
INNER JOIN eCDReservations M ON (P.SubCompanyCode = M.SubCompanyCode AND P.ProgramCode = M.ProgramCode)
LEFT JOIN MeetingAttendees MA ON (M.ReservationID = MA.MeetingID)
INNER JOIN Attendees A ON (MA.AttendeeID = A.AttendeeID)

WHERE
P.SubCompanyCode = 'A011' AND
P.ProgramCode = 'ACL52B'

GROUP BY
M.MeetingCode,
M.City,
M.State

if I run it i get 2 rows.

But if run following query:

SELECT
M.MeetingCode,
M.City AS MeetingCity

from
Programs P, eCDReservations M
WHERE
P.SubCompanyCode = M.SubCompanyCode AND
P.ProgramCode = M.ProgramCode AND
P.SubCompanyCode = 'A011' AND
P.ProgramCode = 'ACL52B'
order by
M.City,
M.State

I get 4 rows. I want all these 4 rows appear in first query result with NoofRSVP = either 0 or null if there is no matching MeetingID in MeetingAttendees table.
neha101 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-08-2006, 07:44 AM Re: Sql Help
jito's Avatar
MY LIFE IS 'i' LIFE

Posts: 565
Name: surajit ray
Location: inside the heart of my friends
Trades: 0
tell in simple english your problem and tell us ur table structure
__________________
I am not smart, that's why i don't act smart


Please login or register to view this content. Registration is FREE
jito is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Sql Help
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.10020 seconds with 12 queries