My issue is this:
I have a mysql table with sports events (date, type, event, location, comments) and a mysql table with music events with the exact same fields. I've separated them so that the tables are more manageable.
I want to do a search on both tables based on various criteria like, for example, from one date to another, and i want the results to appear in the same HTML table ordered by date. i.e. the sports events will be mixed with the music events.
Is there a mysql query that can take care of this without doing any type of join?
IF not...what is the best way to do it? I imagine it's by using arrays, but i'm not sure how to approach it.
Thanks much.