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
Use CONVERT with the Value specifier of 101, whilst casting your data to date:
Value
101
date
CONVERT(VARCHAR(10), CAST(Created_TS AS DATE), 101)