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
What is the maximum rows in sql server table?
What is the largest component inside a field?
Is it possible to update the views? If yes, how, if not, why?
Describe in brief databases and sql server databases architecture.
Scalability, Availability, Integration with internet, etc.)?
Where are full-text indexes stored?
Determine when an index is appropriate?
what type of index will get created after executing the above statement? : Sql server database administration
Explain primary key?
What is resource governor in sql server?
but what if you have to create a database with two filegroups, one on drive c and the other on drive d with log on drive e with an initial size of 600 mb and with a growth factor of 15%? : Sql server database administration
What are synonyms?
What is spatial and temporal data?
why would you use sql agent? : Sql server database administration
What are the types of dml?