Stored ProcedureStored Procedure is one of the powerful parts of SQL Server. Basically it is a group of T-SQL statements which is complied and stored inside the SQL Server.As a result we get some advantages like:1. Secure due to encryption.2. We can use repeatedly after once compile.3. Reduces data pass over a network.4. Secured raw data because they are accessible by only stored procedure.Basis Syntax of Stored ProcedureCREATE PROCEDURE Object NameInput parameter DataTypeOutput parameter DataType OutputASBEGIN--Variable Declaration @parameter...