what is inline view?
Answers were Sorted based on User's Feedback
Answer / anil_abbireddy
A query is written at the from clause of an another query
is called inline view.
Is This Answer Correct ? | 49 Yes | 5 No |
Answer / madhavi
An inline view is a subquery with an alias. It can be used
in the FROM clause of a SELECT statement. An inline view
defines a data source for the SELECT statement in which it
is defined. The columns specified in an inline view can be
accessed in the same way as the columns of a table or view.
Is This Answer Correct ? | 38 Yes | 6 No |
Answer / deva
The inline view is a named subquery where the inputs for
the query depends on the values provided by the outer
query. The values will be provided in every run of the
query.
Is This Answer Correct ? | 53 Yes | 26 No |
Answer / inna
An inline view is a subquery with an alias (or correlation
name) that you can use within a SQL statement.
A named subquery in the FROM clause of the main query is an
example of an inline view.
An inline view is not a schema object.
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / karthik
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.
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / roop
inline view is the named subquery in the FROM cause of the
main query.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / alekhya
if we write a select query in from clause then it is called
as inlineview
Is This Answer Correct ? | 8 Yes | 4 No |
Answer / neha
Writing a select statement in from clause is called an inline view.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / suresh.pathuri
It is the select stataement in the from clause of the another select statement .it used simplyfy the complex queries and removing the many join operations on the table.
this type
select * from(select rownum from emp order by rownum desc) suresh where rownum<=5;
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / lakshmi
A named subquery in the from clause of main query is an example of inline view.
syntax:select * from (subquery)
Is This Answer Correct ? | 0 Yes | 0 No |
Can we perform dml in function?
While inserting 10 rows using procedure, if 3rd entry is having some error, what will be the output? How u will handle that error?
What is a relationship and what are they?
what is the difference between rownum pseudo column and row_number() function? : Sql dba
What are aggregate functions in sql?
What is sql mysql pl sql oracle?
counting the no.of characters occurs in a string by using pl/sql function
in sql table follw columns r their vehicle_no|servicetype|date|location| 1234 |1FS |1-JAN|PUNE| 4561 |2FS |5-JAN|PUNE| 1234 |PS |7-JAN|PUNE| 1234 |PS |15-JAN|MUMB| i want o/p below vehicleno|1fs|1fsdate|1fslocation|1ps|1PSDATE|1PSLOC|2PS|2PS DATE|2PSLOCA e.g 1234|1FS|1JAN|PUNE|1PS|7JAN|PUNE|2PS|15JAN|MUMBAI PLS help me out to execute using sql query
How will you debug your procedure? If your procedure is around 2000 lines and the expected output is 10 and we get only output 5.So how will you debug it? Somebody pls give the correct answer?
i have 2 table table one 4 columns respective values a1 7,a2 6,a3 8 ,a4 12 & table two 4 colums respective values a1 7,a2 6,a3 8,a4 15.if table one & table two 3 colums same then 4th column values 1)Qes diff >5 then print 5 * diff value 2)Que diff <5 print 5
What is the clause we need to add in function body to return variable?
Is like operator in sql case sensitive?