Introduction
Stored procedures help run a set of database commands quickly and safely without typing them every time.
When you want to repeat the same database task many times easily.
When you want to keep your database safe by controlling how data is changed.
When you want to make your database faster by running pre-written commands.
When you want to share common tasks with many users without giving full access.
When you want to keep your database organized by grouping related commands.