What is the correct syntax to create procedure myproc that accept two numbers parameters x and y?
Answers
Answered by
3
Answer:
CREATE PROCEDURE myproc (x NUMBER, y NUMBER) is ...
Step-by-step explanation:
Consider the provided information.
We need to determine the correct syntax to create procedure myproc that accept two numbers parameters x and y.
For this first write CREATE PROCEDURE
We need to create procedure for myproc that accept two numbers parameters x and y.
Therefore the correct syntax is:
- CREATE PROCEDURE myproc (x NUMBER, y NUMBER) is ...
Similar questions