How to find last day of the month in sql query
Answers were Sorted based on User's Feedback
Answer / vishwa
below query will get the last day of the month
select last_day(sysdate) from dual
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / ajit
select TO_CHAR( last_day(sysdate), 'day')
from dual
| Is This Answer Correct ? | 12 Yes | 2 No |
select to_char(sysdate, 'day') from dual;
This will print output: tuesday i.e
select last_day(sysdate) from dual;
This will print output: 31-Aug-14
| Is This Answer Correct ? | 2 Yes | 0 No |
How do I remove all records from a table?
what is overloading procedure or overloading function ?
Is nosql relational?
How many types of database triggers can be specified on a table ? What are they ?
What are packages in pl sql and also explain its advantages?
how to use case expression? : Sql dba
What is difference between mysql and postgresql?
what is 'mysqlcheck'? : Sql dba
Mention what is the function that is used to transfer a pl/sql table log to a database table?
What is minus?
What is the fastest way of accessing a row in a table?
What are the properties of a transaction?
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)