添加: 如姓名、年龄这样基本的
------解决方案--------------------
create proc test
(
@age int --年龄
@name varchar(10)--姓名
)
as
insert into tb(name,age)
values(@name,@age)
你既然问的那么虚,我也回答虚一点
create proc test
(
@age int --年龄
@name varchar(10)--姓名
)
as
insert into tb(name,age)
values(@name,@age)