Can a View based on another View ?
Answers were Sorted based on User's Feedback
Answer / guest
Yes a view can be created based on another view. Like this
views can be created upto 32 levels.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / revathi
Yes, it is possible.
Ex:
create or replace view my_view_3 as
select mv1.id, mv1.name, mv1.address
from my_view_1 mv1.
mv1 IS A ANOTHER VIEW
| Is This Answer Correct ? | 3 Yes | 0 No |
How to insert a new row into a table in oracle?
How to use like conditions in oracle?
What view(s) do you use to associate a users SQLPLUS session with his o/s process?
How can I create database in oracle?
What is backup in Oracle?
How to select the name of employee who is getting maximum sal with out using subquery
How do we get field details of a table?
Explain oracle left join with an example?
What is a user role in oracle?
What is execute immediate in oracle?
I have some query regarding Report generation from Oracle Apps "PO module". I have to generate a report where table columns are as below: Vendor_name Invoice No PO Number Item_Quantity Value of Goods Date of Shipping Name_of_the_transport Date_of_receipt_issued. Now my questions is :from which table/column I can get the information of "Name_of_the_transport" column. Thanks in advance.
In oracle there is column command, how will you explain that?