I want to write a select statement to find a date from my database.
In the database I have a field action_date as a date type with dates like this: 7/12/2012 17:21:33.
How do I get all data from after the specified date?
So if I have db like this:
7/12/2012 17:21:33
7/12/2012 15:21:35
8/12/2012 8:25:35
9/12/2014 8:25:35
I want get only these rows:
7/12/2012 17:21:33
7/12/2012 15:21:35
1 Answer