为了账号安全,请及时绑定邮箱和手机立即绑定

以下内容是关于sql server数据库编写自定义函数的,求解释~

以下内容是关于sql server数据库编写自定义函数的,求解释~

呼如林 2021-11-25 15:15:40
sql server数据库编写自定义函数编写自定义函数实现将FirstName与LastName字段合并成完整人名,格式为LastName,FirstName。。。(其中表EMPLOYEE,FirstName char25,LastName char25)
查看完整描述

2 回答

?
牛魔王的故事

TA贡献1830条经验 获得超3个赞

如果只是单纯的把两个字段拼接起来没必要写自定义函数,查询语句就可以实现
select FirstName,LastName,FirstName+LastName FullName from EMPLOYEE
FullName是合并后的字段

查看完整回答
反对 回复 2021-11-28
?
狐的传说

TA贡献1804条经验 获得超3个赞

drop FUNCTION [dbo].[jzf_Get_IDNO]

go

-- =============================================

-- Author: <Author,,Name>

-- Create date: <Create Date, ,>

-- Description: <Description, ,>

-- =============================================

create FUNCTION [dbo].[jzf_Get_IDNO]

(

-- Add the parameters for the function here

@ApartID nvarchar(40)

)

RETURNS nvarchar(40)

AS

BEGIN

-- Declare the return variable here

DECLARE @str nvarchar(40)

set @str=N'未查到'

-- Add the T-SQL statements to compute the return value here

SELECT @str=Isnull(IDNO,N'未定义') from mytable where objectid=@ApartID


-- Return the result of the function

RETURN @str


END

---------------------结果显示在,上述函数是标量值函数:



查看完整回答
反对 回复 2021-11-28
  • 2 回答
  • 0 关注
  • 169 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信