I am managing an event database. Every event has a start and end timestamp (INT, unix timestamp).
INT, unix timestamp
Currently i\'m able to do the following things with a sing
I think you should modify query like this:
SELECT * FROM `event` WHERE ? BETWEEN `start` AND `end` ORDER BY start ASC
where param ? is the current date or current timestamp.