Which Of The Following Is Correct Syntax To Create A Package #604
Which of the following is correct syntax to create a package specification in PL/SQL?
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 PL/SQL Packages, Collections and Transactions - PL/SQL Packages - Quiz No.1.
Which of the following is correct syntax to create a package specification in PL/SQL?
CREATE package_name AS -- Package Objects END package_name; /CREATE PACKAGE package_name -- Package Objects END package_name; /CREATE PACKAGE package_name AS -- Package Objects END; /CREATE PACKAGE package_name AS -- Package Objects END package_name; /