Multiple choice technology programming languages

Which of the following is TRUE about Views in SQL?

  1. Views are windows of existing table

  2. Creation of view is done by using CREATE VIEW statement

  3. Views do not contain data but table from which it is created contain data

  4. All the Above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

All statements about Views are true. Views are virtual tables (windows) that don't store data themselves but display data from underlying tables. They are created using the CREATE VIEW statement. Views provide abstraction, security, and simplify complex queries. Option D ('All the Above') is correct because A, B, and C are all accurate statements about Views.