Bird
0
0

Which SQL keyword is mandatory when defining a view?

easy📝 Conceptual Q2 of 15
SQL - Views
Which SQL keyword is mandatory when defining a view?
ADELETE
BINSERT
CUPDATE
DSELECT
Step-by-Step Solution
Solution:
  1. Step 1: Identify the core part of a view definition

    A view is defined by a SELECT query that specifies which data to show.
  2. Step 2: Match the keyword to the view definition

    Only SELECT is used to specify the data in a view. INSERT, DELETE, and UPDATE modify data and are not part of view creation.
  3. Final Answer:

    SELECT -> Option D
  4. Quick Check:

    CREATE VIEW requires SELECT keyword [OK]
Quick Trick: Views always use SELECT to define their data [OK]
Common Mistakes:
MISTAKES
  • Using INSERT or UPDATE in view creation
  • Omitting SELECT clause
  • Confusing view with table modification

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More SQL Quizzes