How do we get month name in SQL Server 2000, Oracle, MS Access?
Answers were Sorted based on User's Feedback
Answer / menaka
In Oracle,
SELECT to_char(sysdate,'month') from dual
| Is This Answer Correct ? | 50 Yes | 11 No |
Answer / kongu karunakaran
select datename(month,parametername or columnname) from
tablename
| Is This Answer Correct ? | 33 Yes | 16 No |
in ms-access we can use
select format(date(),'mmmm')
| Is This Answer Correct ? | 37 Yes | 28 No |
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 |
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 |
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 |
Answer / brahma prakash
FOR POSTGRES DATABASE
SELECT to_char(NOW(),'month')
| Is This Answer Correct ? | 15 Yes | 14 No |
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 |
can an order by clause be used in a creation of a view?
i want to create procedure for create table in sql server 2005 for example create procedure create_table @table varchar(20) as create @table( id int, name char(20) ) but it will get error what is solution?
How do indexes help, types?
How to list all schemas in a database?
How to transfer an existing table from one schema to another schema in ms sql server?
SQL Server Architecture ?
What is “asynchronous” communication in sql server service broker?
Is t sql the same as sql server?
Hi All, I want to display all duplicate records in the table. My query has to fetch all the records which are duplicate(First Name or Last Name). Also I want the ability to also pull names where there might be a middle initial placed in the end of the first name field, (i.e., "Maria Z. " vs. "Maria") as well. Please guide me to find this. Table: ID FirstName LastName 1 Zach H Hoffman 2 Zach Hoffman 3 Troy Hoffman 4 Shawn Livermore 5 Prem S 6 Jony Hoffman H 7 Zach Modan I need the query to filter......... ID FirstName LastName 1 Zach H Hoffman 2 Zach Hoffman 3 Troy Hoffman 6 Jony Hoffman H 7 Zach Modan I hope this example will give you clear idea..... Thanks in Advance Prem
What is a unique index?
What is cursors? And what are the different types of cursor?
What are the advantages of mirroring?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)