码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程基本使用

时间:2016-03-12 17:21:51      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

1.基础语法

create proc | procedure pro_name
    [{@参数数据类型} [=默认值] [output],
     {@参数数据类型} [=默认值] [output],
     ....
    ]
as
  SQL_statements
GO

2.创建不带参数存储过程

if (exists (select * from sys.objects where name = ‘proc_test‘))
    drop proc proc_getProjectSalaryByMonth
go
create proc proc_test
as 
	select * from Companies
go 

exec proc_test

 3、 修改存储过程

alter proc proc_test
as
select * from test2;
go 
exec proc_test

4、 带参存储过程

 

 



存储过程基本使用

标签:

原文地址:http://www.cnblogs.com/jt789/p/5269300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!