This code isn't using inner/outer join notation, but the old style. Is
there a reason for this?

I would change the code to this:

<CFQUERY NAME="passport_registration" DATASOURCE="dpch">
          SELECT 
                a.passport_listing_id
                ,a.passport_registration_id
                ,a.email_sent_attendance
                ,a.s_uid
                ,a.student_id
                ,a.people_id
                ,coalesce(b.fname, c.fname) fname
                ,coalesce(b.lname, c.lname) lname
                ,coalesce(b.email, c.email) email
           FROM passport_registration a 
                Left outer join students b
                        On a.student_id = b.student_id
                Left outer join people c
                        On a.people_id = c.id
           WHERE a.passport_listing_id = #url.passport_listing_id#
</CFQUERY>

Steve


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to