...tinyint = NULL,
@Price money = NULL,
@CourseID smallint = 00,
@TermID tinyint = 00
AS
DECLARE @ItemID int
DECLARE @CourseTermID smallint
/* Create and populate new Item record */
INSERT INTO Items
VALUES
(
@TypeID,
@PublisherID,
@Title,
@Author,
@Edition,
@Copyright,
@ISBN,
@Price
)
/*...