Sql Server存储过程详解

  存储过程--查询: if (exists (select * from sys.objects where name = 'GetUser')) drop proc GetUser --判断存储过程是否存在,存在则删除然后重建。 go create proc GetUser --创建存储过程 GetUser @Id int --参数 as set nocount on; --不返回计
相关文章
相关标签/搜索