10ecdfa2e4
Adds the SQL Server Data Tools project for the fuchs_fds database — tables, table types, functions and stored procedures that the backend calls (e.g. fds__getInvoice, fds__merge_bankingtransactions, fds__tt__bankingtransactions, fds__admin_getReportCatalog, fis_* auth). Build/model caches (bin, obj, *.dbmdl, *.jfm, *.user) are git-ignored. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
28 lines
617 B
Transact-SQL
28 lines
617 B
Transact-SQL
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date, ,>
|
|
-- Description: <Description, ,>
|
|
-- =============================================
|
|
CREATE FUNCTION [dbo].[ott_merge_csv]
|
|
(
|
|
@inp1 varchar(2000)
|
|
,@inp2 varchar(2000)
|
|
)
|
|
RETURNS varchar(4000)
|
|
AS
|
|
BEGIN
|
|
DECLARE @ret varchar(4000);
|
|
|
|
with sp as(
|
|
SELECT [value] FROM string_split(@inp1,',')
|
|
UNION
|
|
SELECT [value] FROM string_split(@inp2,',')
|
|
), sp2 as (
|
|
SELECT DISTINCT [value] FROM sp where ISNULL([value], '') <> ''
|
|
)
|
|
SELECT @ret = ISNULL(STRING_AGG([value], ','),'')
|
|
FROM sp2;
|
|
|
|
RETURN @ret;
|
|
|
|
END |