If I am executing a stored procedure for basic queries, such as:
SELECT ColA, ColB FROM MyTable WHERE ID = 123;
SELECT * FROM MyTable,OtherTable WHERE MyTable.ID = OtherTable.ID ORDER BY CreatedAt desc
Is there any benefit to converting those queries to a stored procedure if they are run frequently? When is it better to use a stored procure? When should I not use a stored procedure?
What kind of optimizations, if any, happen when you create and run a stored procedure? Can you recommend any resources to help me understand when and why I should use them?
If it makes any differences, my database is an MS SQL 2005 db.