一、.返回数值的用户自定义函数(标量函数)
create function 函数名称
(
?参数1 类型定义1,
?参数2 类型定义2,
?...
)
returns 返回值类型
with encryption
as
begin
?函数体代码?
?return 返回值
end
--/////
create function fun001()
returns varchar(20)
as
begin
?return 'Welcome to China'
end
--select getdate()
select dbo.fun001()
--jisuan(n)=1+2+3+...+n
create function jisuan(@n int)
returns int
as
begin
?declare @s int,@i int
?set @s=0
?set @i=1
?while (@i<=@n)
?begin
set @s=@s+@i
set @i=@i+1
?end
?return @s
end
select dbo.jisuan(100)
select dbo.jisuan(10)
--统计城市获取人数
create function fun002(@city varchar(20))
returns int
as
begin
?declare @count int
?select @count=count(*) from student
where city=@city
?return @count
end
select dbo.fun002('北京')
select distinct city from student
select distinct city,dbo.fun002(city) as num from student
print dbo.fun002('北京')
--(1)通过函数完成:返回两个整数的最大值
create function fun003(@a int,@b int)
returns int
as
begin
declare @s int
?if (@a>@b)
?set @s=@a
?else
?set @s=@b
return @s
end
--函数中最后一条语句必须是返回语句。
select dbo.fun003(34,5656)
select dbo.fun003(34,3)
--(2)通过函数完成:返回三个整数的最大值
/*
a b c
--fun003(fun003(a,b),c)
a>b
?a c
else
?b c
*/
create function fun004(@a int,@b int,@c int)
returns int
as
begin?
?return dbo.fun003(dbo.fun003(@a,@b),@c)
end
select dbo.fun004(23,5,2323)
select dbo.fun004(23,5232,23)
select dbo.fun004(2334,-5232,23)
create function fun005(@a int,@b int,@c int)
returns int
as
begin
?declare @s int
?if (@a > @b)
?begin
--返回a c 最大值
if (@a > @c)
set @s=@a
else
set @s=@c
?end
?else
?begin
--返回b c最大值
if (@b > @c)
set @s=@b
else
set @s=@c
?end
return @s
end
select dbo.fun005(23,5,2323)
select dbo.fun005(23,5232,23)
select dbo.fun005(2334,-5232,23)
--通过姓名统计总分
create function fun006(@name varchar(20))
returns numeric(10,2)
with encryption
as
begin
declare @s numeric(10,2)
if exists(select * from student where name=@name)
begin
?if exists(select * from relation where stu_no in(select stu_no from student where name=@name))
?begin
select @s=sum(mark) from relation where stu_no in (select stu_no from student where name=@name)
?end
?else
?begin
set @s=-2
?end
end
else
begin
?set @s=-1
end
return @s?
end
?
select dbo.fun006('abc')
select dbo.fun006('张三')
select dbo.fun006('陈刚')
select name,dbo.fun006(name) as summark from student
select name,dbo.fun006(name) as summark from student
where dbo.fun006(name) >= 0
--根据课程名称统计平均分
create function fun111(@c_name varchar(20))
returns numeric(5,2)
with encryption
as
begin
declare @s numeric(5,2)
?if exists(select * from course where c_name=@c_name)
?begin
if exists()
begin
end
else
begin
nd
?end
?else
?begin
set @s=-1
?end
return @s
end
?
二、内联(单语句)的返回表的用户自定义函数
create function 函数名称
(
?参数1 类型定义1,
?参数2 类型定义2,
?...
)
returns table
with encryption
as
return select语句
--按照城市获取学生信息
create function fun007(@city varchar(20))
returns table
with encryption
as
return
select * from student where city=@city
select * from dbo.fun007('北京')
select * from fun007('北京')
?
--按照姓名统计此人选修的课程基本信息
create function fun008(@name varchar(20))
returns table
with encryption
as
return
select * from course where c_no in(
select c_no from relation where stu_no in(
select stu_no from student where name=@name))
select * from fun008('陈刚')
select * from fun008('张三')
select * from fun008('abc')
--按照课程名称统计学修这门课程的学生信息
create function fun113(@c_name varchar(20))
returns table
with encryption
as
return
select * from student where stu_no in(
select stu_no from relation where c_no in(select c_no from course where c_name=@c_name))
?
select * from fun113('网站设计')
?
三、.多语句的返回表的用户自定义函数
create function 函数名称
(
?参数1 类型定义1,
?参数2 类型定义2,
?...
)
returns @return_variable table (定义)
[with encryption]
[as]
begin
function_body
return
end
--按照城市统计给城市的学生的姓名 性别 和城市
create function fun009(@city varchar(20))
returns @tab table(
name varchar(20),
sex char(2),
city varchar(20)
)
with encryption
as
begin
?insert into @tab(name,sex,city) select name,sex,city from student where city=@city
?return
end
select * from fun009('北京')
?
--统计全体学生的姓名和总分
create function fun010()
returns @tab table(
name varchar(20),
summark numeric(10,2)
)
with encryption
as
begin
declare @name varchar(20)
declare @summark numeric(10,2)
declare cur cursor for select name from student where stu_no in(select stu_no from relation)
open cur
fetch cur into @name
while (@@fetch_status=0)
begin
?select @summark=sum(mark) from relation where stu_no in (
?select stu_no from student where name=@name?)
?insert into @tab(name,summark) values(@name,@summark)
?fetch cur into @name
end
close cur
deallocate cur
return
end
select * from fun010()
相关推荐
SQL Server中的自定义函数是数据库开发中非常重要的组成部分,它们允许开发者创建自定义的逻辑,以便在查询中重用和简化复杂操作。本篇主要关注SQL Server 2008中的三种自定义函数:标量函数、内联表值函数和多语句...
- 在项目中添加一个类,并使用`SqlFunction`特性标记需要被SqlServer调用的方法。 - 示例: ```csharp using System; using Microsoft.SqlServer.Server; public static class Encrypt { [SqlFunction] ...
Oracle和SqlServer语法区别 Oracle和SqlServer是两种流行的关系型数据库管理系统,它们之间存在着一些语法区别。了解这些区别对于开发者来说非常重要,因为它可以帮助他们更好地迁移到新的数据库管理系统。下面将...
sql server 2014 JSON解析到表函数 CREATE FUNCTION [dbo].[parseJSON]( @JSON NVARCHAR(MAX)) RETURNS @hierarchy TABLE ( element_id INT IDENTITY(1, 1) NOT NULL, ...
### Oracle到SQL Server存储过程语法转换详解 在数据库迁移项目中,从Oracle迁移到SQL Server是一种常见的场景。本文旨在提供一份详细的指南,帮助开发者更好地理解这两种数据库系统在存储过程方面的语法差异,并...
在 **MS SQL Server** 中,使用 `CREATE PROCEDURE` 或 `CREATE FUNCTION` 创建存储过程或函数,并通过 `EXECUTE` 调用它们。在 **PostgreSQL** 中,则使用 `CREATE OR REPLACE FUNCTION` 创建函数,并使用 `CALL` ...
【标题】"WEB版SQL Server管理系统"是一款基于Web的数据库管理工具,专为SQL Server设计,旨在提供一种方便、高效的方式来远程管理和维护SQL Server数据库。它涵盖了SQL Server数据库中的多种对象,包括表、列、视图...
笔记是本人学习SQLServer一段时间后重新整理出来的,适合有一些入门基础的人学习。 ├─01 安装及使用 │ SQLServer2005安装及使用.txt │ ├─02 常用函数 │ function.sql │ ├─03 建表、建库 │ create.sql ...
在SQL SERVER 2000中进行简繁体转换是一个重要的功能,特别是在处理中文数据时。这个过程涉及到数据库设计和自定义函数的创建,以便在数据库中实现字符集的转换。下面将详细介绍如何在SQL SERVER 2000中执行简繁体...
Node.js 基于 mssql 模块连接 SQL Server 数据库的简单封装操作示例 Node.js 是一个基于 JavaScript 的服务器端运行环境,使用 Node.js 可以轻松地连接各种数据库,包括 SQL Server。在本文中,我们将介绍如何使用...
"Windows Server 2008 内 SQL Server 建立 Linked Server 连接 Oracle" 在 Windows Server 2008 64 位操作系统中,使用 SQL Server 建立 Linked Server 连接 Oracle 数据库是一种常见的需求。然而,在 64 位操作...
在SQL Server 2005中,Base64编码是一种常用的数据编码方式,它将二进制数据转化为可打印的ASCII字符,常用于在网络上传输或存储非ASCII字符的数据。Base64编码能够确保数据在传输过程中不被篡改,因为它是通过特定...
### 查看SQL Server表分区数据分布 在SQL Server中,为了提高大型数据库的管理效率与查询性能,常常会采用表分区技术。通过合理地将一个表的数据分散到多个物理文件或文件组上,可以显著提升数据处理的速度。本文将...
在SQL Server数据库中,存储文件或二进制大对象(Binary Large Object,简称BLOB)是一种常见的需求。这里我们主要关注如何使用SQL Server中的特定字段类型来存储文件,并结合Delphi进行操作。在SQL Server 2000及...
### SQL Server 解析 JSON 字符串方法详解 随着 Web 应用和服务的广泛采用,JSON 成为了一种非常流行的轻量级数据交换格式。在 SQL Server 中处理 JSON 数据变得日益重要,尤其是对于那些需要从非结构化数据源提取...
create function f_split(@SourceSql varchar(8000)) returns @temp table(a varchar(100)) as begin declare @i int set @SourceSql=rtrim(ltrim(@SourceSql)) set @i=charindex(',',@SourceSql) while @i>=1 ...
SQL Server 阿拉伯数字转大写中文存储过程 SQL Server 是一个功能强大且广泛应用的关系数据库管理系统,而阿拉伯数字转大写中文是一个常见的需求,例如,在财务报表、发票printing等应用场景中,需要将阿拉伯数字...
在SQL Server中,处理数值类型的数据时,特别是浮点数(float)或定点数(decimal, numeric),我们可能会遇到一个问题:当数值末尾有过多的零时,它们并不总是直观地显示出来。尤其是在进行计算或者存储后,这些零...
标题“SQLServer获取2019年节假日列表”表明我们需要关注的是如何在SQL Server中查询并提取特定年份,比如2019年的公共假期信息。这通常涉及到设计日期表、编写查询脚本以及可能使用内置或自定义函数来实现。 首先...
### Sqlserver大数据量插入速度慢或丢失数据的解决方法 #### 概述 在处理大量数据插入SQL Server数据库的过程中,可能会遇到插入速度慢或者数据丢失的问题。这种情况通常出现在需要批量插入数千甚至上万条记录的...