What is inline view?

Showing Answers 1 - 6 of 6 Answers

Hanu Ch Rao

  • Feb 21st, 2007
 

The inline view is a construct in Oracle SQL where you can place a query in the SQL FROM, clause, just as if the query was a table name.

A common use for in-line views in Oracle SQL is to simplify complex queries by removing join operations and condensing several separate queries into a single query

  Was this answer useful?  Yes

vizaik

  • Mar 24th, 2007
 

used in oracle to simplify queries

ex: select rowid from (select ename from emp group by sal) where rowid<2

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions