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
How to get a list of all background sessions in the database?
How many categories of data types?
What are the major difference between truncate and delete?
What is tns service name?
21. Using a set operator, display the client number of all clients who have ever placed an order and whose whose name does not contain the string Sm.
What is a data lock in oracle?
State all possible different index configurations a table can possibly have?
What is merge statement used for?
What is translate in oracle?
What is the usage of analyze command in oracle?
Is oracle an open source?
Explain coalesce function?
What is the relation of a user account and a schema?
What are advantages of dateset in datastage?
What are the differences between date and timestamp in oracle?