>If what you are looking for is a list of the events that the client
>attended, you can do this in 1 query:
><cfquery name="getClients" datasource="myDSN">
>       SELECT event.*
>       FROM events, eventAttendance, client
>       where client.clientID = <cfqueryparam value="#cookie.userid#"
>cfsqltype="cf_sql_integer">
>       and client.clientID = eventAttendance.clientID
>       and eventAttendance.eventID = events.ID
></cfquery>
>

This has worked perfectly.  Thanks for the suggestion William!  I can now move 
on to the next portion. 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4403
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to