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:
select convert(nvarchar(10), CREATED_TS, 101)
or
select format(cast(CREATED_TS as date), 'MM/dd/yyyy') -- MySQL 3.23 and above