what is a view?

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


Please Help Members By Posting Answers For Below Questions

How to concatenate two text values in oracle?

812


How to estimate disk space needed for an export job?

744


What is ADDM Advisor in Oracle?

860


How to see free space of each tablespace?

766


Why does for update in oracle 8 cause an ora-01002 error?

733


How to connect ms access to oracle servers?

719


Why is oracle used?

702


What is format trigger?

1815


What are the differences between lov and list item?

748


How many types of auditing in Oracle?

779


Can we create trigger on materialized view in oracle?

748


How to create additional tablespaces for an new database?

766


What is SQL Tuning Advisor in Oracle?

851


How to increment dates by 1 in oracle?

756


How can I introduce multiple conditions in like operator?

724