I have a table that is structured the following way (that i can't change):
EventName, LocalTime, Timezone
Data would be something like this:
Event1, 10:00, ET
Event2, 11:00, ET
Event3, 12:00, ET
Event4, 10:00, CT
how can i write a sql to sort this by actual time so result would be like:
Event1, 10:00, ET
Event2, 11:00, ET
Event4, 10:00, CT
Event3, 12:00, ET
Note that Event2 and Event4 happen at the same time so whichever comes first doesn't matter.
My database is MySQL.
Again, I can not modify the source so I have to work with the data I'm dealt with
Thanks