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 view and materialized view in Oracle?
What is oracle server autotrace in oracle?
What happens if you set the sga too low in oracle?
Is rowid unique in oracle?
What is the exact use of Collections?
Explain how you would restore a database using RMAN to Point in Time?
What is oracle used for?
What privilege is needed for a user to create views in oracle?
What is hash cluster in oracle?
How can I create database in oracle?
Using the relations and the rules set out in the notes under each relation, write table create statements for the relations EMPLOYEE, FIRE and DESPATCH. You should aim to provide each constraint with a formal name, for example table_column_pk.
State some uses of redo log files?
How to do paging with oracle?
How do I uninstall oracle 11g?
How to select some rows from a table in oracle?