• you can use date Style numbers to convert to different date formats

    here is an example for converting current date to different formats

    select CONVERT( varchar(10), getdate(), 111 )

    or

    select CONVERT( varchar(10), getdate(), 112 )

    where 111,112 are different data style number.

    Regards,

    Amit kulkarni