Do view contain data?

Answers were Sorted based on User's Feedback



Do view contain data?..

Answer / sreekanth

No, View is a logical table associated with a query.
It will not store any data in it.
Only the query with which the view is created is stored in
the database.

Is This Answer Correct ?    12 Yes 0 No

Do view contain data?..

Answer / sekhar

Absolutely, the view contain no data. The basic property of
a view is to extract a set of data columns to display from a
large number. And this is useful in future by jst stating
the view name instead writing the select statement every time.

Is This Answer Correct ?    7 Yes 0 No

Do view contain data?..

Answer / gvmahesh

NO,the view is a logical table based on one or more tables
or views.A view in practicality contains no data by
itself.it contains only select statements.

Is This Answer Correct ?    3 Yes 0 No

Do view contain data?..

Answer / shail

Hold on!!!!

All the above answers are absolutely true but remember the
fact that if you delete or update any view data then it
will be reflected in the base table.

Is This Answer Correct ?    2 Yes 0 No

Do view contain data?..

Answer / ram

hold on..
all above are correct
incase of simple view dml operations are allowed
(simple view mean view creates based on one table)

incase of complex view dml operrations not allowd
(complex view create based on more than 1 table)

one more thing is in oracle
materialized view maintain physical copy of data
(dml operations on base tables not reflect on materialized view)

Is This Answer Correct ?    2 Yes 0 No

Do view contain data?..

Answer / suresh

View is a stored select statement,it does not contain any data,and it is a logical table just for the viewing purpose

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

I Have A Table Like This. Cityno Cityname Mails 1 Bangalore 8km 2 Hsr Layout 20km 3 Mejistic 30km 4 Jayadeva 55km 5 Itpl 80km 6 Hebbal 115km I Have Data Like This I Want O/p Like This Distance No.ofcity 0-50km 3 51-100km 2 101-150km 4 And So On

6 Answers   DELL, HCL, Oracle,


How do I run a pl sql program?

0 Answers  


Can a composite key be null?

0 Answers  


what is row? : Sql dba

0 Answers  


Which is better join or inner query?

0 Answers  






what is the forward decleration in packages?

1 Answers  


How can we link a sql database to an existing android app?

0 Answers  


Explain raise_application_error.

0 Answers  


What are the limitations of sql express?

0 Answers  


Can we join same table in sql?

0 Answers  


List out the acid properties and explain?

0 Answers  


What is rownum in sql?

0 Answers  


Categories