写一个sql存储过程
发布网友
发布时间:1天前
我来回答
共2个回答
热心网友
时间:1天前
if (参数1 is null) and (参数2 is null) then
select * from table1 where etime<getdate()
else
if (参数2='yyx') then
select * from table1 where ... order by zk asc,etime desc
else
if (参数2='yyd') then
select * form table1 where ... order by zk desc,etime asc
else
select * from table1 where ... order by etime
热心网友
时间:1天前
这个比较复杂,不过做得出来,需要仔细的想一想
创建存储过程的sql语句
一:创建没有参数的存储过程:CREATE PROCEDURE select_all AS BEGIN SELECT * from T_login1 END GO 二:创建带参数的存储过程:CREATE PROCEDURE select_name id uniqueidentifier AS BEGIN SELECT * from T_login1 where PSN0001A=@id END GO ...
如何在sql创建一条插入数据的存储过程
1、首先需要打开SQL Server Managment管理工具,新建一个表。2、然后在表中插入一些样例数据。3、接下来在SQL Server Managment中右键单击可编程性,选择新建存储过程。4、然后在SQL编写界面中编写SQL语句,注意这里的@name就是接收的输入参数。5、编写好存储过程,执行一下,就会在可编程性下面找到创建的...
使用SQL语句创建存储过程
使用SQL语句创建存储的具体过程如下:1、首先,打开企业管理器,选择【工具】-【查询分析器】:2、然后,输入SQL语句。如下:CREATE PROCEDURE byroyalty1 @percentage int AS select au_id from titleauthor where titleauthor.royaltyper = @percentage GO 3、然后,点击确定之后,命令就会自动添加进查询...
写一个存储过程,学生输入学号和学期,就能查询出这学期的课程,以及成 ...
Sql存储过程:create procedure 存储过程名(学号,学期)as begin select 课程,成绩 from 表名 where 表名.学号=学号 and 表名.学期=学期;end;Oracle存储过程:create or replace procedure 存储过程名(学号,学期,cur_out out sys_refcursor)//cur_out为游标 is begin open cur_out for select 课程...
SQL server 创建存储过程,要求该存储过程能够实现对输入的两个数相加...
一、创建 create proc p_sum (@a int,b int,c int output)as set @c=@a+@b --执行 declare @c int exec p_sum 11 ,2 ,@c output print @c 二、create proc p_multiply(@a int=0,@b int=0,@c int output)as begin set @c=@a*@b end --调用 --declare @a int,@b ...
求一段sql存储过程
create or replace procedure 存储过程名(tableName in varchar)is begin insert into || tableName || values(要插入的数据列...) ;end 存储过程名;
MySQL里面sql语句调用存储过程,该如何写?
这样:CREATE PROCEDURE sp_add(a int, b int,out c int)begin set c=a+ b;end;调用过程:call sp_add (1,2,@a);select @a;
mysql存储过程怎么写
下面我们来介绍一下如何创建一个存储过程。语法格式:可以使用 CREATE PROCEDURE 语句创建存储过程。语法格式如下:CREATE PROCEDURE <过程名> ( [过程参数[,?] ] ) <过程体>[过程参数[,?] ] 格式[ IN | OUT | INOUT ] <参数名> <类型>语法说明如下:1) 过程名存储过程的名称,默认在当前...
在SQL中存储过程的一般语法是什么?
1、 创建语法 create proc | procedure pro_name [{@参数数据类型} [=默认值] [output],{@参数数据类型} [=默认值] [output],...]as SQL_statements 2、 创建不带参数存储过程 --创建存储过程 if (exists (select * from sys.objects where name = 'proc_get_student'))drop proc proc_...
编写一个存储过程实现对表数据的删除 修改和添加!(sql server数据库...
1、使用账户和密码,连接到自己的数据库。2、 找到自己的数据库->【可编程性】->存储过程。3、 打开【存储过程】的子菜单,显示的存储过程如图所示。可以找到详细信息。4、 选中存储过程,右键菜单中选择【修改】。5、存储过程或者函数 显示代码如图所示,即可以修改。6、或者右键菜单中选择【编写存储...