I am using a custom built version of data tables to list records from tables. Most of the time it is wonderful but occasionally I need to join two or more tables to show specific data from lookup tables. Here is a new problem. I have 3 tables... event_categories, themes, and themes_eventcategories. event_categories and themes are normal tables and themes_eventcategories has the fields 'id', 'theme_id', and 'event_category_id'.
What I need to do is get a list of event categories and if there are any themes associated with the event category, I need the themes in a comma separated string. Is this possible?