
Asked in TCS
What is procedure in plsql and it's syntax and difference between procedure and function?

A procedure in PL/SQL is a named block of code that can be called and executed multiple times.
Syntax: CREATE [OR REPLACE] PROCEDURE procedure_name [(parameter1 [mode1] datatype1 [, parameter2 [mode2] ...read more
Both are sub program.
Procedure may or may not return a value. Function must return a value .
Function called in select statement procedure can't called in select statement.
A function would return the returning value/control to the code or calling function. A procedure, on the other hand, would return the control, but would not return any value to the calling function or...read more
A function would return the returning value/control to the code or calling function. A procedure, on the other hand, would return the control, but would not return any value to the calling function or...read more
What is procedure in plsql and it's syntax .
Answer: Procedure are mainly used to do calculations, but you never expect any values on the screen better to go for 'PROCEDURE'.
CREATE OR REPLACE PROCEDUR...read more
Top Plsql Developer Interview Questions Asked at TCS
Interview Questions Asked to Plsql Developer at Other Companies
Top Skill-Based Questions for TCS Plsql Developer


Reviews
Interviews
Salaries
Users

