• linkedu视频
  • 平面设计
  • 电脑入门
  • 操作系统
  • 办公应用
  • 电脑硬件
  • 动画设计
  • 3D设计
  • 网页设计
  • CAD设计
  • 影音处理
  • 数据库
  • 程序设计
  • 认证考试
  • 信息管理
  • 信息安全
菜单
linkedu.com
  • 网页制作
  • 数据库
  • 程序设计
  • 操作系统
  • CMS教程
  • 游戏攻略
  • 脚本语言
  • 平面设计
  • 软件教程
  • 网络安全
  • 电脑知识
  • 服务器
  • 视频教程
  • MsSql
  • Mysql
  • oracle
  • MariaDB
  • DB2
  • SQLite
  • PostgreSQL
  • MongoDB
  • Redis
  • Access
  • 数据库其它
  • sybase
  • HBase
您的位置:首页 > 数据库 >MsSql > SQL Server 2008 存储过程示例

SQL Server 2008 存储过程示例

作者: 字体:[增加 减小] 来源:互联网 时间:2017-05-11

通过本文主要向大家介绍了sql server 2008,sql server 2008 r2,sql server 2008下载,sql server 2008 密钥,sql server 2008教程等相关知识,希望本文的分享对您有所帮助
 
--有输入参数的存储过程--
create proc GetComment
(@commentid int)
as
select * from Comment where CommentID=@commentid
 
--有输入与输出参数的存储过程--
create proc GetCommentCount
@newsid int,
@count int output
as
select @count=count(*) from Comment where NewsID=@newsid
 
 
--返回单个值的函数--
create function MyFunction
(@newsid int)
returns int
as
begin
declare @count int
select @count=count(*) from Comment where NewsID=@newsid
return @count
end
 
--调用方法--
declare @count int
exec @count=MyFunction 2
print @count
 
--返回值为表的函数--
Create function GetFunctionTable
(@newsid int)
returns table
as
return
(select * from Comment where NewsID=@newsid)
 
--返回值为表的函数的调用--
select * from GetFunctionTable(2)
</div>

SQLServer 存储过程中不拼接SQL字符串实现多条件查询

--以前拼接的写法
  set @sql=' select * from table where 1=1 '
  if (@addDate is not null)
   set @sql = @sql+' and addDate = '+ @addDate + ' '
  if (@name <>'' and is not null)
   set @sql = @sql+ ' and name = ' + @name + ' '
  exec(@sql)
</div>

下面是 不采用拼接SQL字符串实现多条件查询的解决方案

  --第一种写法是 感觉代码有些冗余
  if (@addDate is not null) and (@name <> '')
   select * from table where addDate = @addDate and name = @name
  else if (@addDate is not null) and (@name ='')
   select * from table where addDate = @addDate
  else if(@addDate is null) and (@name <> '')
   select * from table where and name = @name
  else if(@addDate is null) and (@name = '')
  select * from table
  --第二种写法是
  select * from table where (addDate = @addDate or @addDate is null) and (name = @name or @name = '')
  --第三种写法是
  SELECT * FROM table where
  addDate = CASE @addDate IS NULL THEN addDate ELSE @addDate END,
  name = CASE @name WHEN '' THEN name ELSE @name END
</div>

SQLSERVER存储过程基本语法

一、定义变量

--简单赋值
declare @a int
set @a=5
print @a
 
--使用select语句赋值
declare @user1 nvarchar(50)
select @user1= '张三'
print @user1
declare @user2 nvarchar(50)
select @user2 = Name from ST_User where ID=1
print @user2
 
--使用update语句赋值
declare @user3 nvarchar(50)
update ST_User set @user3 = Name where ID=1
print @user3
 
</div>

二、表、临时表、表变量

--创建临时表1
create table #DU_User1
(
   [ID] [ int ]  NOT NULL ,
   [Oid] [ int ] NOT NULL ,
   [Login] [nvarchar](50) NOT NULL ,
   [Rtx] [nvarchar](4) NOT NULL ,
   [ Name ] [nvarchar](5) NOT NULL ,
   [ Password ] [nvarchar]( max ) NULL ,
   [State] [nvarchar](8) NOT NULL
);
--向临时表1插入一条记录
insert into #DU_User1 (ID,Oid,[Login],Rtx, Name ,[ Password ],State) values (100,2, 'LS' , '0000' , '临时' , '321' , '特殊' );
 
--从ST_User查询数据,填充至新生成的临时表
select * into #DU_User2 from ST_User where ID<8
 
--查询并联合两临时表
select * from #DU_User2 where ID<3 union select * from #DU_User1
 
--删除两临时表
drop table #DU_User1
drop table #DU_User2
 
--创建临时表
CREATE TABLE #t
(
   [ID] [ int ] NOT NULL ,
   [Oid] [ int ] NOT NULL ,
   [Login] [nvarchar](50) NOT NULL ,
   [Rtx] [nvarchar](4) NOT NULL ,
   [ Name ] [nvarchar](5) NOT NULL ,
   [ Password ] [nvarchar]( max ) NULL ,
   [State] [nvarchar](8) NOT NULL ,
)
 
--将查询结果集(多条数据)插入临时表
insert into #t select * from ST_User
--不能这样插入
--select * into #t from dbo.ST_User
 
--添加一列,为int型自增长子段
alter table #t add [myid] int NOT NULL IDENTITY(1,1)
--添加一列,默认填充全球唯一标识
alter table #t add [myid1] uniqueidentifier NOT NULL default (newid())
 
select * from #t
drop table #t
--给查询结果集增加自增长列
 
--无主键时:
select IDENTITY( int ,1,1) as ID, Name ,[Login],[ Password ] into #t from ST_User
select * from #t
 
--有主键时:
select ( select SUM (1) from ST_User where ID<= a.ID) as myID,* from ST_User a order by myID
--定义表变量
declare @t table
(
   id int not null ,
   msg nvarchar(50) null
)
insert into @t values (1, '1' )
insert into @t values (2, '2' )
select * from @t
</div>

三、循环

--while循环计算1到100的和
declare @a int
declare @ sum int
set @a=1
set @ sum =0
while @a<=100
begin
   set @ sum +=@a
   set @a+=1
end
print @ sum
</div>

四、条件语句

--if,else条件分支
if(1+1=2)
begin
   print '对'
end
else
begin
   print '错'
end
 
--when then条件分支
declare @today int
declare @week nvarchar(3)
set @today=3
set @week= case
   when @today=1 then '星期一'
   when @today=2 then '星期二'
   when @today=3 then '星期三'
   when @today=4 then '星期四'
   when @today=5 then '星期五'
   when @today=6 then '星期六'
   when @today=7 then '星期日'
   else '值错误'
end
print @week
 
</div>

五、游标

declare @ID int
declare @Oid int
declare @Login varchar (50)
 
--定义一个游标
declare user_cur cursor for select ID,Oid,[Login] from ST_User
--打开游标
open user_cur
while @@fetch_status=0
begin
--读取游标
   fetch next from user_cur into @ID,@Oid,@Login
   print @ID
   --print @Login
end
close user_cur
--摧毁游标
deallocate user_cur
</div>

五、游标

declare @ID int
declare @Oid int
declare @Login varchar (50)
 
--定义一个游标
declare user_cur cursor for select ID,Oid,[Login] from ST_User
--打开游标
open user_cur
while @@fetch_status=0
begin
--读取游标
   fetch next from user_cur into @ID,@Oid,@Login
   print @ID
   --print @Login
end
close user_cur
--摧毁游标
deallocate user_cur
</div>

六、触发器

  触发器中的临时表:
  Inserted
  存放进行insert和update 操作后的数据
  Deleted
  存放进行delete 和update操作前的数据

--创建触发器
Create trigger User_OnUpdate 
   On ST_User 
   for Update 
As 
   declare @msg nvarchar(50)
   --@msg记录修改情况
   select @msg = N '姓名从“' + Deleted. Name + N '”修改为“' + Inserted. Name + '”' from Inserted,Deleted
   --插入日志表
   insert into [LOG](MSG) values (@msg)
   
--删除触发器
drop trigger User_OnUpdate
</div>

七、存储过程

--创建带output参数的存储过程
CREATE PROCEDURE PR_Sum
   @a int ,
   @b int ,
   @ sum int output
AS
BEGIN
   set @ sum =@a+@b
END
 
--创建Return返回值存储过程
CREATE PROCEDURE PR_Sum2
   @a int ,
   @b int
AS
BEGIN
   Return @a+@b
END
   
--执行存储过程获取output型返回值
declare @mysum int
execute PR_Sum 1,2,@mysum output
print @mysum
 
--执行存储过程获取Return型返回值
declare @mysum2 int
execute @mysum2= PR_Sum2 1,2
print @mysum2
</div>

八、自定义函数

  函数的分类:
    1)标量值函数
    2)表值函数
        a:内联表值函数
        b:多语句表值函数
    3)系统函数

--新建标量值函数
create function FUNC_Sum1
(
   @a int ,
   @b int
)
returns int
as
begin
   return @a+@b
end
 
--新建内联表值函数
create function FUNC_UserTab_1
(
   @myId int
)
returns table
as
return ( select * from ST_User where ID<@myId)
 
--新建多语句表值函数
create function FUNC_UserTab_2
(
   @myId int
)
return
  


 
分享到:QQ空间新浪微博腾讯微博微信百度贴吧QQ好友复制网址打印

您可能想查找下面的文章:

  • SQL Server 移动系统数据库
  • SQL Server 使用 SET FMTONLY ON 获得表的元数据
  • 简述SQL Server 2005数据库镜像相关知识
  • 利用SQL SERVER 2005数据库镜像实现可用性分析
  • SQL server 视图(view)介绍
  • SQL Server 索引介绍
  • shp2sqlserver 用法简析
  • SQL Server CROSS APPLY和OUTER APPLY的应用详解
  • SQLServer分布式事务问题
  • sqlserver 2008手工修改表结构,表不能保存的问题与解决方法

相关文章

  • 2017-05-11SQLServer2005混合模式登录配置(用户登录错误18452,233,4064)
  • 2017-05-11SQLServer 查询当前服务器有多少连接请求的语句
  • 2017-05-11SQL server 管理事务和数据库介绍
  • 2017-05-11mssql2005数据库镜像搭建教程
  • 2017-05-11正解SQLSEVER 2005 sql排序(按大小排序)
  • 2017-05-11SQL2005重新生成索引的的存储过程 sp_rebuild_index 原创
  • 2017-05-11SQL Server 2005中的外联结用法
  • 2017-05-11SQL Server 2005基础知识详细整理
  • 2017-05-11快速将珊瑚虫IP数据库转MS SQL2005的图文教程第1/2页
  • 2017-05-11SQLSERVER2005 中树形数据的递归查询

文章分类

  • MsSql
  • Mysql
  • oracle
  • MariaDB
  • DB2
  • SQLite
  • PostgreSQL
  • MongoDB
  • Redis
  • Access
  • 数据库其它
  • sybase
  • HBase

最近更新的内容

    • Sqlserver 2005使用XML一次更新多条记录的方法
    • SQL Server 2008 备份数据库、还原数据库的方法
    • mdf文件和ldf文件导入到sql server 2005实现语句
    • 安装SQL Server 2008时 总是不断要求重启电脑的解决办法
    • SQL2005查询表结构的SQL语句使用分享
    • SQL Server附加数据库出错,错误代码5123
    • sqlserver2005利用临时表和@@RowCount提高分页查询存储过程性能示例分享
    • SQL Server 2008存储结构之GAM、SGAM介绍
    • SQL Server 2008 R2数据库镜像部署图文教程
    • SQL Server 2008 数据库镜像部署实例之三 配置见证服务器

关于我们 - 联系我们 - 免责声明 - 网站地图

©2020-2025 All Rights Reserved. linkedu.com 版权所有