I have saved dates as VARCHAR in sql server 2005 now I want to select all dates before 2013 and I can't.
WDATE 09/01/2012 08/13/2012
I want to compare those dates with any other date I am using this query:
SELECT * FROM Work_Order
WHERE WDATE < '09/02/2012'
but it subtract days then months then years which is not my case