Here is my situation: We have an "events" table which tracks certain events. We have two columns in there: "chargedID" and "convictedID." The "chargedID" column holds the information for what a client is initially being charged for. The "convictedID" column holds the information for what the client is actually charged for. We have a second table, "events_description" which holds the information describing the "chargedID" and "convictedID" columns. I can query our "events" table to display both the "chargedID" and "convictedID" columns; howerver, I want to include the descriptions of each charge from the "events_description" table. I can only show the correct information for the "chargedID" column but not the descriptions for the "convictedID" column. Does anybody know how to do this? Thanks for any help!