Posts by Diogo Basilio • 1 point
2 posts
-
0
votes1
answer29
viewsA: How do I add a new user to a PL/SQL table using a function?
create or replace FUNCTION DSB_ADD_NEW_USERS (I_NAME IN VARCHAR2, I_ADDRESS IN VARCHAR2, I_BIRTHDATE IN DATE, I_COUNTRY IN VARCHAR2) RETURN NUMBER IS CURRENT_USER NUMBER; BEGIN CURRENT_USER :=…
-
0
votes1
answer29
viewsQ: How do I add a new user to a PL/SQL table using a function?
I recently started working with PL/SQL and one of the doubts I have is in creating and declaring functions. More specifically on this: -Creates a function that creates a new user: 1: Usa uma…