i want result as month name from my query
i tried with the following query but it give result as month number
like (8)
select (month(getdate())) as expr
i want result as month name (Augest)..
give me the proper query...
from Sachinsachin shah (sachin28880@.gmail.com) writes:
Quote:
Originally Posted by
i want result as month name from my query
>
i tried with the following query but it give result as month number
like (8)
>
select (month(getdate())) as expr
>
i want result as month name (Augest)..
>
give me the proper query...
Look at the datename() function in Books Online.
--
Erland Sommarskog, SQL Server MVP, esquel@.sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/pr...oads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodin...ions/books.mspx|||On Aug 16, 7:48 am, sachin shah <sachin28...@.gmail.comwrote:
Quote:
Originally Posted by
Hi all
>
i want result as month name from my query
>
i tried with the following query but it give result as month number
like (8)
>
select (month(getdate())) as expr
>
i want result as month name (Augest)..
>
give me the proper query...
>
from Sachin
Try SELECT DATENAME(MONTH,GETDATE())sql
No comments:
Post a Comment