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
You can use this query-
SELECT FORMAT (getdate(), 'dd/MMM/yy') as date
Hope, this query helps you.
Thanks!!