时间:2021-07-01 10:21:17 帮助过:830人阅读
1 create procedure proc_sql1 2 as 3 begin 4 declare @i int 5 set @i=0 6 while @i<26 7 begin 8 print char(ascii(‘a‘) + @i) + ‘的ASCII码是: ‘ + cast(ascii(‘a‘) + @i as varchar(5)) 9 set @i = @i + 1 10 end 11 end
1 exec proc_sql1
1 a的ASCII码是: 97 2 b的ASCII码是: 98 3 c的ASCII码是: 99 4 d的ASCII码是: 100 5 e的ASCII码是: 101 6 f的ASCII码是: 102 7 g的ASCII码是: 103 8 h的ASCII码是: 104 9 i的ASCII码是: 105 10 j的ASCII码是: 106 11 k的ASCII码是: 107 12 l的ASCII码是: 108 13 m的ASCII码是: 109 14 n的ASCII码是: 110 15 o的ASCII码是: 111 16 p的ASCII码是: 112 17 q的ASCII码是: 113 18 r的ASCII码是: 114 19 s的ASCII码是: 115 20 t的ASCII码是: 116 21 u的ASCII码是: 117 22 v的ASCII码是: 118 23 w的ASCII码是: 119 24 x的ASCII码是: 120 25 y的ASCII码是: 121 26 z的ASCII码是: 122
5:数据查询功能的不带参数的存储过程
1 create procedure proc_sql2 2 as 3 begin 4 select * from 职工 where 工资>2000 5 end
execute proc_sql2
在存储过程中可以包含多个select语句,显示姓名中含有”张“字职工信息及其所在的仓库信息,
1 create procedure pro_sql5 2 as 3 begin 4 select * from 职工 where 姓名 like ‘%张%‘ 5 select * from 仓库 where 仓库号 in(select 仓库号 from 职工 where 姓名 like ‘%张%‘) 6 end 7 8 go 9 execute pro_sql5
6:带有输入参数的存储过程
找出三个数字中的最大数:
1 create proc proc_sql6 2 @num1 int, 3 @num2 int, 4 @num3 int 5 as 6 begin 7 declare @max int 8 if @num1>@num2 9 set @max = @num1 10 else set @max = @num2 11 12 if @num3 > @max 13 set @max = @num3 14 15 print ‘3个数中最大的数字是:‘ + cast(@max as varchar(20)) 16 end
execute proc_sql6 15, 25, 35
3个数中最大的数字是:35
7:求阶乘之和 如6! + 5! + 4! + 3! + 2! + 1
1 alter proc proc_sql7 2 @dataSource int 3 as 4 begin 5 declare @sum int, @temp int, @tempSum int 6 set @sum = 0 7 set @temp = 1 8 set @tempSum = 1 9 while @temp <= @dataSource 10 begin 11 set @tempSum = @tempSum * @temp 12 set @sum = @sum + @tempSum 13 set @temp = @temp + 1 14 end 15 print cast(@dataSource as varchar(50)) + ‘的阶乘之和为:‘ + cast(@sum as varchar(50)) 16 end
execute proc_sql7 6
6的阶乘之和为:873
8:带有输入参数的数据查询功能的存储过程
1 create proc proc_sql8 2 @mingz int, 3 @maxgz int 4 as 5 begin 6 select * from 职工 where 工资>@mingz and 工资<@maxgz 7 end
execute proc_sql8 2000,5000
9:带输入和输出参数的存储过程:显示指定仓库号的职工信息和该仓库号的最大工资和最小工资
1 create proc proc_sql9 2 @cangkuhao varchar(50), 3 @maxgz int output, 4 @mingz int output 5 as 6 begin 7 select * from 职工 where 仓库号=@cangkuhao 8 select @maxgz=MAX(工资) from 职工 where 仓库号=@cangkuhao 9 select @mingz=MIN(工资) from 职工 where 仓库号=@cangkuhao 10 end
1 declare @maxgz int, @mingz int 2 execute proc_sql9 ‘wh1‘, @maxgz output, @mingz output 3 select @maxgz as 职工最大工资, @mingz as 职工最小工资
10:带有登录判断功能的存储过程
[sql] view plain copy
[sql] view plain copy
密码输入错误
11:带有判断条件的插入功能的存储过程
[sql] view plain copy
[sql] view plain copy
12: 创建加密存储过程
[sql] view plain copy
所谓加密存储过程,就是将create proc 语句的原始文本转换为模糊格式,模糊代码的输出在SQL Server的任何目录视图中都能直接显示
13: 查看存储过程和功能代码信息
[sql] view plain copy
查看指定存储过程的属性信息:
[sql] view plain copy
查看存储过程所使用的数据对象的信息
[sql] view plain copy
查看存储过程的功能代码
[sql] view plain copy
14:重命名存储过程名
execute sp_rename 原存储过程名, 新存储过程名
15:删除存储过程
drop 过程名
带有判断条件的删除存储过程
[sql] view plain copy
16:存储过程的自动执行
使用sp_procoption系统存储过程即可自动执行一个或者多个存储过程,其语法格式如下:
sp_procoption [@procName=] ‘procedure‘, [@optionName=] ‘option‘, [@optionValue=] ‘value‘
各个参数含义如下:
[@procName=] ‘procedure‘: 即自动执行的存储过程
[@optionName=] ‘option‘:其值是startup,即自动执行存储过程
[@optionValue=] ‘value‘:表示自动执行是开(true)或是关(false)
[sql] view plain copy
利用sp_procoption系统函数设置存储过程masterproc为自动执行
17:监控存储过程
可以使用sp_monitor可以查看SQL Server服务器的各项运行参数,其语法格式如下:
sp_monitor
该存储过程的返回值是布尔值,如果是0,表示成功,如果是1,表示失败。该存储过程的返回集的各项参数的含义如下:
*last_run: 上次运行时间
*current_run:本次运行的时间
*seconds: 自动执行存储过程后所经过的时间
*cpu_busy:计算机CPU处理该存储过程所使用的时间
*io_busy:在输入和输出操作上花费的时间
*idle:SQL Server已经空闲的时间
*packets_received:SQL Server读取的输入数据包数
*packets_sent:SQL Server写入的输出数据包数
*packets_error:SQL Server在写入和读取数据包时遇到的错误数
*total_read: SQL Server读取的次数
*total_write: SQLServer写入的次数
*total_errors: SQL Server在写入和读取时遇到的错误数
*connections:登录或尝试登录SQL Server的次数
SQL之存储过程详细介绍及语法(篇幅比较长慢慢看)
标签:控制 包含 error: 输出参数 idle get 输入数据 运行时间 where