How do we get month name in SQL Server 2000, Oracle, MS Access?
Answer Posted / foram
select month(getdate())
select month(dateparametername) from tablename
---here u will get number of month
or
select datename(month,getdate())
select datename(month,dateparametername) from tablename
to get name of month
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
What is a derived table?
Which are the two editions in which SQL Azure database available?
How to retrieve error messages using mssql_get_last_message()?
Is it possible to have clustered index on separate drive from original table location?
What are the requirements for sql server 2016?
What is an index in sql?
How to restore performance issues and how to check?
Tell me what do you understand by a view? What does the with check option clause for a view do?
How do I perform an unattended install of sql server 2000?
what kind of lan types do you know? : Sql server database administration
How to get @@error and @@rowcount at the same time?
Can I save my report as html, excel or word? : sql server management studio
What is table value parameters (tvp)?
can SSRS reports Cache results?
Can a function call a stored procedure in sql server?