...

/

What are Stored Procedures?

What are Stored Procedures?

This lesson presents an introduction to stored procedures and reviews their advantages and drawbacks.

We'll cover the following...

Stored Procedures

Procedures are a simple way to save queries for later access. A stored procedure can be defined as a set of SQL statements stored in the MySQL server. For example a SELECT statement that returns all the male actors can be turned into a stored procedure. A stored procedure an be invoked using CALL ...