Skip to content
Advertisement

Oracle PL/SQL Functions: “Invalid Datatype”

The following function checks to see if a zip code is present in a table called ZIPCODE:

The schema for the ZIPCODE table is as follows: ZIPCODE

To test this function, I issued the following statement which should return false as the zip code passed as an argument is present in the ZIPCODE table:

However, I receive this message when trying to run this code:

This should not be happening, as ‘00914’ is the proper datatype needed as an argument (varchar2(5)). Why am I receiving this message?

Advertisement

Answer

Try to create the stored procedure as :

Then you’ll be successful to call :

Since, a boolean can not be set as returning variable for a sql statement.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement