[Quote=引用 1 楼 wzy_love_sly 的回复:]
SQL codecreate proc insert_book
@id int,@name nvarchar(50),@price money
as
begin
set nocount on
insert into book(编号,书名,价格)values(@id,@name,@price)
set nocount off
end
[/Quote]
create proc insert_book
@id int,@name nvarchar(50),@price money
as
begin
set nocount on
insert into book(编号,书名,价格)values(@id,@name,@price)
set nocount off
end