What is Stored Procedure?
A stored procedure is a named group of SQL statements that have been previously formed and kept in the server database. Stored procedures accept input parameters so that a single procedure can be used over the network by several clients using dissimilar input data. And when the procedure is modified, all clients automatically get the new version. Kept procedures decrease network traffic and improve performance.