🎴 Flashcard Mode

SQL and Web Services Programming

Card1 / 11
Mastered0
Review0
QuestionClick to flip

Which of the following is TRUE about Views in SQL?

AnswerClick to flip back
A
All the Above
💡 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.

Change Mode