spDelete_Comments
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@CommentID | int | IN |
Definition
Copy
CREATE PROCEDURE [dbo].[spDelete_Comments]
(
@CommentID int
)
AS
DELETE FROM dbo.Comments where [CommentID] = @CommentID