select * from Posts where CreationDate > '12 Apr 2012 09:07'Time part can be omitted as well:
select * from Posts where CreationDate > '12 Apr 2012'This format should work in most scenarios since it is difficult for SQL parser to mess with such an obvious date format. Certainly I would not recommend using it in production code.
No comments:
Post a Comment