What is a stored procedure in the context of RDBMS?

  • A precompiled set of SQL statements that can be executed
  • A schema that defines the structure of a database
  • A temporary table used for intermediate processing
  • A virtual table representing the result of a SELECT query
A stored procedure in the context of RDBMS is a precompiled set of SQL statements that can be executed as a single unit. It allows for modularizing and reusing code, enhancing performance, and improving security by controlling access to database operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *