Subject | RE: [firebird-support] Re: Calling all SQL gurus |
---|---|
Author | Kevin Stanton |
Post date | 2005-03-28T21:28:06Z |
Have you considered a stored proc to return your result set?
That way you can have multiple lookups.
Kevin
_____
From: Clay Shannon [mailto:cshannon@...]
Sent: Monday, March 28, 2005 1:23 PM
To: firebird-support@yahoogroups.com
Subject: RE: [firebird-support] Re: Calling all SQL gurus
JJ Ochoa suggested:
<< What about
select p.firstname, p.lastname, a.admit_date, a.ADMISSION_ID,
a.ADMIT_ORDINAL, d.departure_date
from patient_admissions a join departures d
on d.admission_id = a.ADMISSION_ID
join patients p
on p.PATIENT_ID = a.admission_id
where d.DEPARTURE_DATE is null>>
Thanks, Juan Jose,
Unfortunately that doesn't work, either, because there's no record at all in
the Departures table until they depart. Your select statement is
syntactically fine, but returns no records.
Another way of looking at what I need is something like this:
Select <whatever>
Clay Shannon,
Dimension 4 Software
Yahoo! Groups Sponsor
ADVERTISEMENT
<http://us.ard.yahoo.com/SIG=129atlbvj/M=298184.6018725.7038619.3001176/D=gr
oups/S=1705115386:HM/EXP=1112131393/A=2593423/R=0/SIG=11el9gslf/*http:/www.n
etflix.com/Default?mqso=60190075> click here
<http://us.adserver.yahoo.com/l?M=298184.6018725.7038619.3001176/D=groups/S=
:HM/A=2593423/rand=525366690>
_____
Yahoo! Groups Links
* To visit your group on the web, go to:
http://groups.yahoo.com/group/firebird-support/
* To unsubscribe from this group, send an email to:
firebird-support-unsubscribe@yahoogroups.com
<mailto:firebird-support-unsubscribe@yahoogroups.com?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.
[Non-text portions of this message have been removed]
That way you can have multiple lookups.
Kevin
_____
From: Clay Shannon [mailto:cshannon@...]
Sent: Monday, March 28, 2005 1:23 PM
To: firebird-support@yahoogroups.com
Subject: RE: [firebird-support] Re: Calling all SQL gurus
JJ Ochoa suggested:
<< What about
select p.firstname, p.lastname, a.admit_date, a.ADMISSION_ID,
a.ADMIT_ORDINAL, d.departure_date
from patient_admissions a join departures d
on d.admission_id = a.ADMISSION_ID
join patients p
on p.PATIENT_ID = a.admission_id
where d.DEPARTURE_DATE is null>>
Thanks, Juan Jose,
Unfortunately that doesn't work, either, because there's no record at all in
the Departures table until they depart. Your select statement is
syntactically fine, but returns no records.
Another way of looking at what I need is something like this:
Select <whatever>
>From <blab la>Where count(<Patient_admissions column>) > count(<Departure column>)
Clay Shannon,
Dimension 4 Software
Yahoo! Groups Sponsor
ADVERTISEMENT
<http://us.ard.yahoo.com/SIG=129atlbvj/M=298184.6018725.7038619.3001176/D=gr
oups/S=1705115386:HM/EXP=1112131393/A=2593423/R=0/SIG=11el9gslf/*http:/www.n
etflix.com/Default?mqso=60190075> click here
<http://us.adserver.yahoo.com/l?M=298184.6018725.7038619.3001176/D=groups/S=
:HM/A=2593423/rand=525366690>
_____
Yahoo! Groups Links
* To visit your group on the web, go to:
http://groups.yahoo.com/group/firebird-support/
* To unsubscribe from this group, send an email to:
firebird-support-unsubscribe@yahoogroups.com
<mailto:firebird-support-unsubscribe@yahoogroups.com?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.
[Non-text portions of this message have been removed]