Advertisement
Guest User

Untitled

a guest
May 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. CREATE OR REPLACE FUNCTION calculate_tax(personId NUMBER)
  3. RETURN NUMBER
  4. IS tax NUMBER(10,2);
  5.  
  6. BEGIN
  7. tax := 0;
  8.  
  9.  
  10.  
  11. RETURN tax;
  12.  
  13. END calculate_tax;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement