StoredprocedureinOracleplsql
Learn Stored procedure concept in Oracle plsql Here in this blog just we are going to see stored procedure concept in Oracle plsql. We will include further topics in Oracle plsql training in separate blogs. 1. Stored procedure is also called as PL/SQL block 2. Stored procedure receive input in the form of parameters and performs some task and it may or may not returns a value. 3. Procedures are created to perform one or more DML operations over database. (Ex: To create one or more DML operation (Insert or Delete or update) over database, we are creating Stored procedure) SYNTAX for Stored procedure: CR...