Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.82 KB | None | 0 0
  1. USE [SP_ClubPage]
  2. GO
  3. /****** Object:  StoredProcedure [dbo].[CorpEmp_DeleteEmp]    Script Date: 7/20/2017 9:19:43 AM ******/
  4. SET ANSI_NULLS ON
  5. GO
  6. SET QUOTED_IDENTIFIER ON
  7. GO
  8.  
  9. ALTER PROCEDURE [dbo].[CorpEmp_DeleteEmp]
  10. /*
  11. ****************************************************************************************************************
  12. * File Name  : [dbo].[CorpEmp_DeleteEmp]
  13. * Description: Corporate Employees admin tool - Delete CorpEmployees
  14. * Author     : YJ
  15. *
  16. * Example    :
  17. *
  18. * History    :
  19.     Date           Name         Description
  20. *   ----------     --------     -----------
  21.     07/20/2017      YJ          Initial development
  22. *
  23. ****************************************************************************************************************
  24. */
  25. AS
  26. BEGIN
  27. DELETE FROM
  28. [SP_ClubPage].[dbo].[CorpEmployees]
  29. WHERE       EmployeeID = '10002'
  30. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement