Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

AddCategory.sql 434B

123456789101112131415161718192021
  1. CREATE PROCEDURE [dbo].[AddCategory]
  2. -- Add the parameters for the function here
  3. @CategoryName nvarchar(64),
  4. @LogID int
  5. AS
  6. BEGIN
  7. SET NOCOUNT ON;
  8. DECLARE @CatID INT
  9. SELECT @CatID = CategoryID FROM Category WHERE CategoryName = @CategoryName
  10. IF @CatID IS NULL
  11. BEGIN
  12. INSERT INTO Category (CategoryName) VALUES(@CategoryName)
  13. SELECT @CatID = @@IDENTITY
  14. END
  15. EXEC InsertCategoryLog @CatID, @LogID
  16. RETURN @CatID
  17. END