Which Of The Following Statements Creates A Stored Procedure #303
Which of the following statements creates a stored procedure ‘MONEY’ with a parameter ‘note’?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL Subqueries - SQL Comments - Quiz No.1.
Which of the following statements creates a stored procedure ‘MONEY’ with a parameter ‘note’?
CREATE PROCEDURE money As Sql_statements Go;
CREATE PROCEDURE money note varchar2(10) As Sql_statements Go;
CREATE PROCEDURE money @note varchar2(10) As Sql_statements Go;
CREATE money @note varchar2(10) As Sql_statements Go;