Multiple choice technology programming languages

Can View have Indexes?

  1. Multiple

  2. Single Index

  3. Two are Allowed

  4. None

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

Views in SAP (and most databases) cannot have their own indexes. A view is a virtual table that doesn't physically store data - it retrieves data from underlying base tables. Indexes are physical structures created on actual database tables to improve query performance. Since views don't store data, you cannot create indexes on them directly.