34,838
社区成员




create proc product_update
@a nchar(5),
@b nchar(5),
@c nchar(5)
as
update table_a set a=@a
update table_a set a=@a
update table_a set a=@a
create proc product_update
@a nchar(5),
@b nchar(5),
@c nchar(5)
as
update table_a set a=@a
update table_b set a=@b where table_b.ID=table_a.ID
update table_c set a=@c where table_c.ID=table_a.ID