Multiple choice technology databases

Which of the following database objects is considered executable using SQL?

  1. View

  2. Table

  3. Routine

  4. Package

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

A routine (such as a stored procedure or user-defined function) is an executable database object containing logic that is run using SQL CALL or SELECT. Tables, views, and packages are metadata or structural components that define data or store compiled code but are not executable.