How can this be done properly in MySQL? I want to select records that are created after a specific date AND time... I thought something simple like this would do the trick, but I think it needs a bit more to it to work.
SELECT `modified` FROM `Blog` WHERE `modified` > 2010-01-08 16:01:01
Any help appreciated.