I have a column called "s_timestamp."
How can I return all the records that have the current day in the timestamp?
For example,
s_timestamp
2012-12-27 1:00:00
2012-12-27 2:00:00
2012-12-26 0:00:01
2012-12-20 0:00:02
2012-12-21 0:00:03
I would like the following output:
2012-12-27 1:00:00
2012-12-27 2:00:00
Let me know if this is unclear.