こんにちは、ストアド プロシージャを作成しようとしていますが、保存しようとするたびにエラーが発生します
Msg 102, Level 15, State 1, Procedure forum_Insert_Post, Line 3
Incorrect syntax near '@description'.
Msg 137, Level 15, State 2, Procedure forum_Insert_Post, Line 9
Must declare the scalar variable "@title"
これは私のコードです:
CREATE PROCEDURE forum_Insert_Post
@title nvarchar
@description nvarchar
@subcategoryId int
@date dateTime
@usernameId uniqueidentifier
AS
INSERT INTO forum_posts (PostTitle , PostContent , PostDate , UserId , SubcategoryId)
VALUES (@title , @description , @date , @usernameId , @subcategoryId)
ここで何が間違っていますか?