create proc p_insert
@title varchar(5000),
@description ntext  -- 参数是可以使用这种类型的
as
insert  into  talbes(title,description)values(@title,@description)