I have a query in SQL, I have to get a date in a format of dd/mm/yy
SQL
dd/mm/yy
Example: 25/jun/2013.
25/jun/2013
How can I convert
convert
we can convert date into many formats like
SELECT convert(varchar, getdate(), 106)
This returns dd mon yyyy
dd mon yyyy
More Here This may help you