微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SQLServer2008 标量函数

1)首先点击数据库-可编程行-标量函数,右键新建标量值函数


2)开始写函数

USE [lpp]
GO
/****** Object:  UserDefinedFunction [dbo].[Rand2Valid]    Script Date: 09/10/2016 09:19:34 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		<Author,Name>
-- Create date: <Create Date,>
-- Description:	<Description,>
-- =============================================
ALTER FUNCTION [dbo].[Rand2Valid] 
(
	-- Add the parameters for the function here
	@a int,@b int
)
RETURNS decimal(10,1)
AS
BEGIN
	-- Declare the return variable here
	DECLARE @r decimal(10,1)

	-- Add the T-sql statements to compute the return value here
	SELECT @r=cast(getRandData*(@b-@a)+@a as decimal(10,1)) from GetRandDataView

	-- Return the result of the function
	RETURN @r

END
3)全部选中这些函数,点击执行,然后才正式创建了,创建时把上面ALTER改为CREATE;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐