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

sql server数据库编写自定义函数编写自定义函数实现将FirstName与LastName字段合并成完整人名,格式为LastName,FirstName。。。
(其中表EMPLOYEE,FirstName char25,
LastName char25)

呼如林
浏览 175回答 2
2回答

牛魔王的故事

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

狐的传说

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)ASBEGIN-- Declare the return variable hereDECLARE @str nvarchar(40)set @str=N'未查到'-- Add the T-SQL statements to compute the return value hereSELECT @str=Isnull(IDNO,N'未定义') from mytable where objectid=@ApartID-- Return the result of the functionRETURN @strEND---------------------结果显示在,上述函数是标量值函数:
打开App,查看更多内容
随时随地看视频慕课网APP