Guest User

Untitled

a guest
Feb 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. CREATE PROC spDiscardEmployee
  2. @EID Varchar(20)
  3. AS
  4. BEGIN
  5. DELETE tblPaycheck
  6. WHERE EID=@EID
  7. DELETE tblFamily
  8. WHERE EID=@EID
  9. DELETE tblEmployee
  10. WHERE EID=@EID
  11. END
Add Comment
Please, Sign In to add comment