what are stored prcedures in sql
A stored procedure is a prepared SQL code that you can save, so the code
can be reused over and over again.
~ So if you have a SQL query that you
write over and over again,
save it as a stored procedure,
and then just call it to execute it.