Multiple choice technology databases

Which one is a system privilege?

  1. SELECT

  2. DELETE

  3. EXECUTE

  4. ALTER TABLE

  5. CREATE TABLE

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

CREATE TABLE is a system privilege (DDL permission) that applies across the database, unlike SELECT/DELETE/EXECUTE which are object-specific privileges tied to particular tables or procedures. System privileges control structural database operations, while object privileges control data access.