I\'m having a sql table with date column named CREATED_TS which holds the dates in different format eg. as shown below
sql table
CREATED_TS
Feb 20 2012
As your data already in varchar, you have to convert it into date first:
select convert(varchar(10), cast(ts as date), 101) from