I'm looking into stored procedures at the moment.
According to this article (page 8) in the dev section of the mysql website...
Ordinarily, it's not normal to put SELECT statements in stored procedures, this is for illustration. I decided that some procedure should simply select from our table, so that when you call the procedure it will be obvious that it's working.
Why is that?
Is using Stored-procedures to simplify complicated select statements not 'best-practices'?
What are some specific situations where it is beneficial to use a stored procedure? Example?