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 multilevel indexing?
What are the new features introduced in SQL Server 2000? What changed between the previous version of SQL Server and the current version?
Can we join two tables without primary key?
How you would rewrite the sql query to return the customerid sorted numerically?
Explain what is it unwise to create wide clustered index keys?
How to create an index on an existing table in ms sql server?
How to delete duplicate records based on single column from a table?
How can we solve concurrency problems?
What is sub-query in sql server? Explain its properties.
What are the types of database schema? : sql server analysis services, ssas
Describe in brief authentication modes in sql server.
Do you know hot add cpu in sql server 2008?
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
How to get a list of columns using the "sp_help" stored procedure in ms sql server?
What are the different types of replication you can set up in sql server?