I have a table for matches. The table has a column named matchdate
, which is a datetime
field.
If I have 3 matches on 2011-12-01:
- 2011-12-01 12:00:00
- 2011-12-01 13:25:00
- 2011-12-01 16:00:00
How do I query that? How do I query all matches on 1 single date?
I have looked at date_trunc()
, to_char()
, etc.
Isn't there some "select * where datetime in date"
function?