I'm trying to create a list and i'm being stumped. So I have a table that with a start_date field that holds Unix Timestamps for the date. I'm trying to query the table and extract the date from the timestamp, then any result with that date will be under that day and so on. Almost like a calendar with events on it in list view.
I'm doing this with PostgreSQL and PHP. Not sure how to write that query. I see functions like extract, date_part etc for PostgreSQL however, still unsure how to get the correct query(s).
Any help or examples would be appreciated.