The DROP PACKAGE command is used to delete a package.
In PL/SQL, the correct command to delete a package is:
DROP PACKAGE package_name;
Replace package_name
with the actual name of the package you want to delete. The DROP PACKAGE
statement is used to remove a PL/SQL package from the database.