How do we get month name in SQL Server 2000, Oracle, MS Access?
Answer Posted / kathiravan jayachandran
In Oracle
select to_char(sysdate, 'dd/mm/yyy')as year from dual
EG:-
select ed.emp_date_of_birth,ed.first_name,ed.last_name
from emp_details ed where
to_char(ed.emp_date_of_birth,'mm')=to_char(sysdate,'mm')
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
You want your report to display a hyperlink that will take users to your intranet. How do you configure such a hyperlink?
What do you mean by the term 'normalization'?
What are dml (data manipulation language) statements in ms sql server?
How do I view a trc file?
Can you always create a cache of a report?
Can binary strings be converted into numeric or float data types?
Explain the characteristics of a transaction server for example atomicity, consistency, isolation, durability?
Mention the differences between substr and charindex in sql server.
How can delete duplicate records in cte in sql server?
Explain raiserror in sql server?
What is the difference between index seek vs. Index scan?
What do you understand by replication in sql server? Mention the different types of replication in sql server.
Do you know what is rank function?
What is report server project?
you want to be sure that queries in a database always execute at the maximum possible speed. To achieve this goal you have created various indexes on tables which other statement will keep the database in good condition? : Sql server administration