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 rename an existing table?
Can you assign multiple query result rows to a variable?
How to convert characters to numbers in oracle?
What are the ways tablespaces can be managed and how do they differ?
How to rename a column in an existing table?
Explain the use of rows option in imp command.
How remove data files before opening a database?
Can we commit inside a function in oracle?
How to load a large xml file?
How to connect to a remote server?
what is meant by magic query
What are group functions in oracle?
What is primefaces used for?
how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?
Can a formula column be obtained through a select statement ?