Answer Posted / sunil maurya
A view is simply the representation of a SQL statement that
is stored in memory so that it can easily be re-used. For
example, if we frequently issue the following query
SELECT empid FROM emp;
I might well want to make this a view (the reality is that
we would probably never create a view for a statement this
simple but we wanted to use an easy example).
To create a view use the create view command as seen in this
example
CREATE VIEW view_emp
AS
SELECT empid FROM emp;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between $oracle_base and $oracle_home?
What do you mean by merge in oracle and how can you merge two tables?
What are internal user account in oracle?
In the oracle version 9.3.0.5.0, what does each number shows?
How to pass parameters to procedures in oracle?
What is concurrency in oracle?
What is object data modeling?
How to best split csv strings in oracle 9i?
How to use "out" parameter properly?
What is the data type of dual table?
How to write a query with a left outer join in oracle?
What is Java Pool in Oracle?
Explain the blob datatype?
What is the difference between 10g OEM and 11g OEM?
What's dateware house and what's clustor with practicle example