sql 创建函数示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 创建函数示例相关的知识,希望对你有一定的参考价值。

-- ================================================
-- Template generated from Template Explorer using:
-- Create Scalar Function (New Menu).SQL
--
-- Use the Specify Values for Template Parameters 
-- command (Ctrl-Shift-M) to fill in the parameter 
-- values below.
--
-- This block of comments will not be included in
-- the definition of the function.
-- ================================================
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		<Author,,Name>
-- Create date: <Create Date, ,>
-- Description:	<Description, ,>
-- =============================================
CREATE FUNCTION GetRequestDeliveredDate
(
@RequestId int 
	
)
RETURNS datetime
AS
BEGIN
	
	declare @DeliveredDate datetime

	SELECT @DeliveredDate=min(LogDate) FROM [dbo].[RequestLog](NOlock)
WHERE RequestId=@RequestId and IsDelivered=1

	RETURN @DeliveredDate

END
GO

以上是关于sql 创建函数示例的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server存储过程中使用表值作为输入参数示例

创建一个 SQL 函数,如果日期是假期则返回

PostgreSQL V14中更好的SQL函数

PostgreSQL V14中更好的SQL函数

SQL 中STUFF函数用法

SQL Server用户定义的函数(UDF)使用详解