Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. CREATE OR REPLACE FUNCTION BuscaNome
  2. RETURN t_name
  3. IS
  4. t_name VARCHAR(20);
  5. BEGIN
  6.  
  7. SELECT T.DS_TURMA INTO t_name
  8. FROM TURMA T WHERE T.CD_TURMA = 13;
  9.  
  10. RETURN t_name;
  11. END;
Add Comment
Please, Sign In to add comment