Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

InsertCategoryLog.sql 355B

12345678910111213141516
  1. CREATE PROCEDURE InsertCategoryLog
  2. @CategoryID INT,
  3. @LogID INT
  4. AS
  5. BEGIN
  6. SET NOCOUNT ON;
  7. DECLARE @CatLogID INT
  8. SELECT @CatLogID FROM CategoryLog WHERE CategoryID=@CategoryID and LogID = @LogID
  9. IF @CatLogID IS NULL
  10. BEGIN
  11. INSERT INTO CategoryLog (CategoryID, LogID) VALUES(@CategoryID, @LogID)
  12. RETURN @@IDENTITY
  13. END
  14. ELSE RETURN @CatLogID
  15. END