I have a table with a column called date, as a varchar. The contents are specifically formatted like 'March 11, 2011'.
How can I select the results have them correctly ordered by date?
|
I have a table with a column called How can I select the results have them correctly ordered by date? |
||||
|
I'm blindly assuming MySQL here, because it makes sense in the context of this question. Nobody using another database engine would dare create this problem in the first place.
You may need to adjust the format string a bit. |
|||
|
|
|
Yes, you can use the DATE function along with CURDATE.
This will select all rows where If you want to select all rows where
|
|||
|
If your two dates are in variables such as
And you'll use a query like this one :
To select data that has its date which is greater or equal that today ; and that's before tomorrow.
Doing this, your database engine would have to apply that function to all lines of your table, not using any index you might have on the |
|||||
|
|
dateyou won't have any problems sorting it. – a_horse_with_no_name Mar 19 '11 at 8:12