Explain about derived tables?
Answers were Sorted based on User's Feedback
Answer / vinay
derived tables are logical tables in the universe. to
reduce the query complexity and better query performance or
complex querys we write in derived tables. derived tables
are nothing but sql queries. thease tables can be used in
prompts...
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / srini
Some times the main query needs a driving query in FROM
clause, which is not possible to build. So we use derived
tables to fix this.
Example:
SELECT
----
FROM
TABLE1,
( SELECT
---
FROM
TABLE2
)DERIVED_TABLE
WHERE
TABLE1.COLUMN = DERIVED_TABLE.COLUMN;
| Is This Answer Correct ? | 1 Yes | 0 No |
whats the diff between break and section
how to create a derived table in designer? i need steps regarding derived table
Please anybody tell me Is Data integration And ETL programming is same..? Thanks in advance....
In a context can i get the data from two different factables by using the single data provider?
What is package in BO
What three things do you consider to be the most important factors for a manager?
what is the core universe and what is the active universe?
What is the difference between the public object&schema object?
What is the difference b/w breaks and sections
What is the difference between the Bo 3.0 and 3.1?
how to coneect to a server in a business objects
Hi,can anybody help me to do like this, i have one dp with agerange, first name ,Address. And another dp is agerange,age min , last name. in this two data providers agerange is common . I want to see in my report all the fields . How i can merge it ?