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 |
What are the different types of triggers?
Does inner join remove duplicates?
What are the sql commands?
What is rownum and rowid?
how to create a database in oracle?please gve anser with example
how many columns can be used for creating index? : Sql dba
What is t sql in sql server?
What is date functions?
Can 2 queries be executed simultaneously in a distributed database system?
How can multiply values of a column? OR How can multiply value of a row of a column using a single query in SQL?
what is a relationship and what are they? : Sql dba
How does rowid help in running a query faster?
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)