Skip to content
Advertisement

Oracle : Not a valid function or procedure name

I have to create a procedure that inserts a person to table:

When I call the function:

I get the error:

Advertisement

Answer

You can use:

Which, if you have the table:

Then you can do:

And the table contains:

ID_OSOBY | IMIE | NAZWISKO | WIEK | STAN_CYWILNY | TELEFON      | PESEL | ID_ADRESU
-------: | :--- | :------- | ---: | :----------- | :----------- | :---- | --------:
       1 | ABC  | DEF      |    2 | GHI          | 123456789012 | J     |         3

db<>fiddle here

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