what is inline command?
Answers were Sorted based on User's Feedback
Answer / nagender k
Inline view is a subquery in the from clause of your main
query.
Is This Answer Correct ? | 6 Yes | 1 No |
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 |
How do you update a sql procedure?
What is difference between TRUNCATE & DELETE?
16 Answers Ahn Infotech, CitiGroup, ICICI, PreVator, Saama Tech, SkyTech, TCS,
need to split a string into seperate values. eg. col1 col2 ---------- 100 - 'a,b,c' 200 - 'a,x,b,d,e' 300 - 'c' result: value count ------------- a - 2 b - 1 c - 2 etc.
What is multiple partition?
what are the nonstandard string types? : Sql dba
Does sql*plus have a pl/sql engine?
what is a tablespace? : Sql dba
How to order siblings in oracle hierarchy queries?
I need to write a simple query,which one is better select statement or stored procedure?and why?
Is it possible to sort a column using a column alias?
What is Overloading of procedures ?
how to create a database in oracle?please gve anser with example