what is inline command?

Answers were Sorted based on User's Feedback



what is inline command?..

Answer / nagender k

Inline view is a subquery in the from clause of your main
query.

Is This Answer Correct ?    6 Yes 1 No

what is inline command?..

Answer / rajeshwaran

An inline command is nothing but and Inline view that act
as a data-source for an Query.
Another important info about the Inline command is that it
is not an Schema Object.

example : (select rownum,e.eno
from (select eno from emp) e
where rownum <=3)

The query will result the TOP_3_analysis .In which the query
(select eno from emp) is known as INLINE_view or
INLINE_Query

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

Explain locks? : Transact sql

0 Answers  


How is data stored in sql?

0 Answers  


Explain aggregate functions are available there in sql?

0 Answers  


Mention what are different methods to trace the pl/sql code?

0 Answers  


What is sql*loader?

0 Answers  






what are the different functions in sorting an array? : Sql dba

0 Answers  


Write a query to find the name of employees those who have joined on Monday.(based on column hire_date)

15 Answers   Satyam,


How to prepare for oracle pl sql certification?

0 Answers  


What is memory optimized?

0 Answers  


Difference between aggregate function and analytical function?

3 Answers   Metric Stream,


how to create object in plsql

2 Answers   TCS,


what is a foreign key ? : Sql dba

0 Answers  


Categories