Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. ALTER PROCEDURE [dbo].[testAgain]
  2. -- Add the parameters for the stored procedure here
  3. (
  4. @Id int,
  5. @Password varchar(50)
  6. )
  7. AS
  8. BEGIN
  9. -- SET NOCOUNT ON added to prevent extra result sets from
  10. -- interfering with SELECT statements.
  11. SET NOCOUNT ON;
  12.  
  13. -- Insert statements for procedure here
  14. Insert into Test Values(@Id,@Password)
  15. END
  16. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement