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 collation in ms sql server?
How do we synchronize On-Premise SQL server with SQL Azure?
1.what are diff types of joins , and explain diff between cross join and full outer join 2.diff types of views 3. Diff types of index 4. What is diff b/w stores procedure and function procedure 5.diff between double and int in SQL 6.diff between char and varchar in SQL. 7.Oracle or SQL whice you will preferred and why.
What are the encryption mechanisms in sql server?
What are window functions in sql server?
What is the difference between a view and a stored procedure?
What are the database objects? : SQL Server Architecture
How to insert stored procedure result into temporary table?
What is use of except clause? How it differs from not in clause?
What is the primary use of the model database?
What is the difference between upgrade and migration in sql server?
Explain about integration services of Microsoft SQL server?
How to use copy and concatenate commands in SQL?
Do you know what is bit data type and whats the information that can be stored inside a bit column?
You schedule a job to run every minute what will happen if the first job runs more than 1 min? Will the second instance of the job start?