Multiple choice technology databases

Which of the following DB objects is executable using SQL?

  1. View

  2. Table

  3. Routine

  4. Package

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

Routines (stored procedures and functions) contain executable code that can be invoked using SQL statements like CALL or in expressions. Views and tables are data structures only. Packages are containers for routines but aren't directly executed.