In your application, you are comparing a string called start_date with time.
If start_date is a column, it should be
SELECT * FROM `la_schedule` WHERE start_date >'2012-11-18';
SELECT * FROM `la_schedule` WHERE start_date >'2012-11-18';
(without apostrophe) or
SELECT * FROM `la_schedule` WHERE `start_date` >'2012-11-18';
SELECT * FROM `la_schedule` WHERE `start_date` >'2012-11-18';
(with backticks).
Hope this helps.
Kneel-Before-ZOD Nov 19 '12 at 6:22 2012-11-19 06:22
source share