Give an example of any procedure.
Answer Posted / roopesh kumar
We can write a procedure with or w/o using parameters.
For procedure the simplest ex. could be like as
SQL> create or replace procedure tr ---calling procedure
2 as
3 begin
4 in_emp; -- Called procedure
5 end;
6 /
in this procedure i am calling another procedure inside
that.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
what are the differences between procedure-oriented languages and object-oriented languages? : Sql dba
Is sql procedural language?
How to avoid using cursors?
Is left join same as join?
What do you mean by stored procedures?
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba
What is string join?
what are local and global variables and their differences? : Sql dba
how many values can the set function of mysql take? : Sql dba
When can we use the where clause and the having clause?
Can we connect to postgresql using sql developer?
What is character functions?
What is indexes?
what is bcp? When is it used?
What is clustered and nonclustered index in sql?