Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do we get month name in SQL Server 2000, Oracle, MS Access?

Answers were Sorted based on User's Feedback



How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / sairam

select datename(mm,getdate())

Is This Answer Correct ?    173 Yes 30 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / menaka

In Oracle,

SELECT to_char(sysdate,'month') from dual

Is This Answer Correct ?    50 Yes 11 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / kongu karunakaran

select datename(month,parametername or columnname) from
tablename

Is This Answer Correct ?    33 Yes 16 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / rajiv rohilla

in ms-access we can use
select format(date(),'mmmm')

Is This Answer Correct ?    37 Yes 28 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / marco birchler

In Oracle make the first letter capital if you wish the
output names also capitalised. "Month" instead of "month"

Is This Answer Correct ?    13 Yes 8 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / test

select datename(month,getdate())

Is This Answer Correct ?    11 Yes 6 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / 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

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / 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

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / brahma prakash

FOR POSTGRES DATABASE
SELECT to_char(NOW(),'month')

Is This Answer Correct ?    15 Yes 14 No

How do we get month name in SQL Server 2000, Oracle, MS Access?..

Answer / aanshi

For oracle, OLD and NEW tables.
For sql server, Inserted & Deleted.
These two tables are also called as magic table.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

what is bit data type? and what are the information that can be stored inside a bit column?

2 Answers  


What is raid, and how it can influence database performance?

0 Answers  


please give me query code of unique fuction select UNIQUE (name) from emp_info Incorrect syntax near the keyword 'UNIQUE'.

1 Answers   TCS,


How much is a sql server license?

0 Answers  


how to find nth highest salary

103 Answers   Cognizant, IBM, NexGen, Oracle,


What are the different types of triggers in SQL SERVER?

0 Answers  


What are the new features introduced in SQL Server 2000 (or the latest release of SQL Server at the time of your interview)? What changed between the previous version of SQL Server and the current version?

0 Answers  


How to invoke a trigger on demand?

0 Answers  


What is data compression? : sql server database administration

0 Answers  


What is a data source or ds? : sql server analysis services, ssas

0 Answers  


What are the kinds of subquery?

0 Answers  


How many max. conditions can b written under the WHERE clause? Like select * from [tabnam] WHERE (cond1...or..cond2....or...cond3...and.....so on.....??? (upto how much extent))?????

3 Answers   SAP Labs,


Categories