Advertisement
catalin_stefann11

Untitled

May 21st, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.27 KB | None | 0 0
  1. FUNCTION modifica_adresa_editura( f_id_editura IN editura.id_editura%TYPE, f_adresa VARCHAR2)
  2. RETURN editura.adresa_editura%TYPE
  3. IS
  4. BEGIN
  5. UPDATE editura
  6. SET editura.adresa_editura = f_adresa
  7. WHERE id_editura = f_id_editura;
  8. RETURN f_adresa;
  9. END modifica_adresa_editura;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement