how to get the third quarter of employee details from emp?
Answers were Sorted based on User's Feedback
Answer / eshwer
select * from emp where TO_CHAR(hiredate,'Q')=3;
'Q' Regrives the all the 4 quarters(1,2,3,4) details on
that we retrive the 3 quarter details
Please check it
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rupesh kumar
select * from emp where rownum<=(select round((count(*)/4)
*3) from emp)
minus
select * from emp where rownum<=(select round((count(*)/4)
*2) from emp)
| Is This Answer Correct ? | 5 Yes | 4 No |
What is rownum and rowid?
What are the parts of a sql statement?
Difference between table function and pipelined function?
What is sql key?
How do I audit the sql sent to the server?
How do I trace sql profiler?
Can unique keys be null?
Can a table have two primary keys?
Is merge a dml statement?
How to return multiple records from procedure?
What is the difference between subquery and correlated query?
What is foreign key in sql with example?
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)