首页 > 数据库 >在SQL server中如何写存储过程

在SQL server中如何写存储过程

时间:2023-09-02 17:34:23浏览次数:40  
标签:存储 name -- server ---- book SQL id

总结一下SQL server中如何存储。

USE [SSQADM]  
----Use 是跳转到哪个数据库,对这个数据库进行操作。
GO       
----GO向 SQL Server 实用工具发出一批 Transact-SQL 语句结束的信号,相当于提交上面的SQL语句。
----GO是把t-sql语句分批次执行。(一步成功了才会执行下一步,即一步一个GO)
/****** Object:  StoredProcedure [dbo].[PROC_four_five_hr]    Script Date: 07/30/2018 13:44:55 ******/
----这一段是介绍本存储过程名字和创建时间
----/*  */   是注释掉很多行内容的符号
----object 对象 的意思
----storeprocedure  存储过程 的意思
----dbo 是每个数据库的默认用户,具有所有者权限
----dbo后面是存储过程的名称
----script date 脚本 创建时间
SET ANSI_NULLS ON
GO
----
SET QUOTED_IDENTIFIER ON
GO
----

/*首先准备数据,测试存储过程
use ssqadm;

--创建测试books表
create table books_test (
    book_id int identity(1,1) primary key,
    book_name varchar(20),
    book_price float,
    book_auth varchar(10)
);
--插入测试数据
insert into books_test
  (book_name,book_price,book_auth)
  values
        ('论语',25.6,'孔子'),
        ('天龙八部',25.6,'金庸'),
        ('雪山飞狐',32.7,'金庸'),
        ('平凡的世界',35.8,'路遥'),
        ('史记',54.8,'司马迁');

    select * from books_test;

*/
   
   --1.创建无参存储过程
if (exists (select * from sys.objects where name = 'getAllBooks'))
    drop proc getAllBooks
go
create procedure getAllBooks
as
begin
select * from books_test;
--调用,执行存储过程
exec getAllBooks;
end
go
--2、修改存储过程

alter procedure getallbooks
as 
select book_name from books_test;

--3、删除存储过程
drop procedure getallbooks;

go
--4、修改存储过程的名称
sp_rename getallbooks,proc_get_allbooks;

go
exec proc_get_allbooks;
go

--5、创建带参数的存储过程

use ssqadm
 go
if (exists (select * from sys.objects where name = 'searchbooks'))
drop proc searchbooks
-- exec searchbooks  1;--执行存储searchbooks得到如下结果:
go
create procedure searchbooks (@bookid int)--括号里面是
as 
begin
declare  @book_id int;----定义一个标量变量,只是保证存储过程的完整性,在本存储是多此一举的。
set @book_id = @bookid;
select* from books_test where book_id = @book_id;
end;
go
-- exec searchbooks  1;--执行存储searchbooks得到如下结果:

--6、创建带两个参数的存储过程

use ssqadm
 go
if (exists (select * from sys.objects where name = 'book_test2'))
drop proc book_test2
-- exec book_test2  1;--执行存储book_test2得到如下结果:
go
create procedure book_test2 (@bookid int,@bookname varchar(20))--括号里面是
as 
begin
declare  @book_id int;----定义一个标量变量,只是保证存储过程的完整性,在本存储是多此一举的。
declare  @book_name varchar(20);
set @book_id = @bookid;
set @book_name = @bookname;
select* from books_test where book_id = @book_id and book_name = @book_name;
end;
go
-- exec book_test2  1,'论语';--执行存储book_test2得到如下结果:

--7、创建带有返回值的存储过程
use ssqadm
go
if (exists (select * from sys.objects where name = 'book_test3'))
drop proc book_test3

go
create procedure book_test3(@bookid int,@out_book_name varchar(20) output)
as
declare @book_id  int;
set @book_id = @bookid;

begin
select @out_book_name = book_name from books_test where book_id= @book_id;
end
go

-- --执行存储book_test2得到如下结果:
--执行存储过程
declare @out_name varchar(20) --声明一个变量用来接收执行存储过程后的返回值
exec book_test3 1,@out_name output
select @out_name as out_book_name;--as是给返回的列值起一个名字

标签:存储,name,--,server,----,book,SQL,id
From: https://www.cnblogs.com/walkersss/p/17673945.html

相关文章

  • mysql decode()
    mysqldecode()    举例:    oracle: select  decode(pay_name, ' aaaa ' , ' bbb ' ,pay_name), sum (comm_order), sum (suc_order), sum (suc_amount)  From   payment.order_tab   group   by  decode(pay_name, ' aaaaa ' , ' bb......
  • 12.mysql数据查询
    下面是一些MySQL数据库中的数据查询操作示例,包括单表查询和多表查询,以及相应的示例数据表。单表查询:假设我们有一个名为products的表,用于存储产品信息:CREATETABLEproducts(product_idINTPRIMARYKEY,product_nameVARCHAR(255),categoryVARCHAR(50),......
  • 9.mysql 高可用性和故障恢复
    当考虑在MySQL数据库中实现高可用性和故障恢复时,以下是更详细的步骤和策略:主从复制(Master-SlaveReplication):配置一个主数据库和多个从数据库。启用二进制日志(binarylog)和从数据库的复制功能。设置适当的复制方式(异步复制通常用于高可用性,但可能会有些许延迟)。使......
  • mysql监控和维护
    对MySQL进行监控和维护是确保数据库性能和稳定性的关键部分。以下是一些常见的MySQL监控和维护任务:1.监控工具和服务:MySQLWorkbench:这是MySQL官方提供的一款图形化管理工具,提供性能监控和诊断工具。PerconaToolkit:包括各种有用的工具,如pt-query-digest用于分析慢查询、p......
  • Springboot项目打成jar包,如何设置存储路径?并且上传的静态文件如何访问?
    第一步设置资源资源存储路径找到需要保存指定文件路径添加以下代码//保存上传的资源文件路径,路径在部署jar包同级目录。Stringpath=System.getProperty("user.dir")+"/static/images/";Filedir=newFile(path);if(!dir.exists()){dir.mkdirs();}......
  • 泛微E-cology ifNewsCheckOutByCurrentUser.dwr SQL注入漏洞
    漏洞描述泛微E-cology的ifNewsCheckOutByCurrentUser.dwr文件存在SQL注入漏洞。漏洞复现fofa语法:app="泛微-协同办公OA"登录页面如下:POC:POST/dwr/call/plaincall/CptDwrUtil.ifNewsCheckOutByCurrentUser.dwrHTTP/1.1Host:User-Agent:Mozilla/5.0(WindowsNT5.1)A......
  • 【Mysql | 空值处理 】
    MySQL中,空值通常用于表示缺失或未定义的值。处理空值的关键在于理解空值与其他值之间的关系,以及如何使用不同的SQL函数来处理和转换空值。(空值处理)NULLValues(空值)MySQL使用SQLSELECT命令及WHERE子句来读取数据表中的数据,但是当提供的查询条件字段为NULL时,该......
  • centos查看mysql默认密码和修改密码
    1、查看mysql默认密码:grep‘temporarypassword’/var/log/mysqld.logroot@localhost:b_1sZou9FZrtb_1sZou9FZrt就是2、修改mysql密码:ALTERUSER‘root’@‘localhost’IDENTIFIEDBY‘newpassword’;‘newpassword’替换成你要设置的密码,注意:密码设置必须要大小写字母数......
  • mysql周week函数
    WEEK(date[,mode])WEEK()函数会返回一个日期的周数,第2个参数mode可以指定一周是从周日开始还是周一开始,以及返回值的范围是[0,53]还是[1,53],如果第2个参数缺失了,则使用系统变量default_week_format的值ModeFirstdayofweekRangeWeek1isthefirstweek…......
  • 泛微E-Office mysql_config.ini 数据库信息泄漏漏洞
    漏洞描述泛微E-Officemysql_config.ini文件可直接访问,泄漏数据库账号密码等信息漏洞复现fofa语法:app="泛微-EOffice"登录页面如下:验证POC:/mysql_config.ininuclei批量yaml文件id:EOffice_mysql_config_information_leakinfo:name:泛微OAE-Officemysql_config.i......