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>
27 lines
605 B
Transact-SQL
27 lines
605 B
Transact-SQL
|
|
-- =============================================
|
|
-- Author: <Author,,Name>
|
|
-- Create date: <Create Date, ,>
|
|
-- Description: <Description, ,>
|
|
-- =============================================
|
|
CREATE FUNCTION [dbo].[ott_remove_csv]
|
|
(
|
|
@inp1 varchar(2000)
|
|
,@fragment varchar(500)
|
|
)
|
|
RETURNS varchar(4000)
|
|
AS
|
|
BEGIN
|
|
DECLARE @ret varchar(4000);
|
|
|
|
with sp as(
|
|
SELECT [value] FROM string_split(@inp1,',')
|
|
), sp2 as (
|
|
SELECT DISTINCT [value] FROM sp where ISNULL([value], '') <> '' AND ISNULL([value], '') <> @fragment
|
|
)
|
|
SELECT @ret = ISNULL(STRING_AGG([value], ','),'')
|
|
FROM sp2;
|
|
|
|
RETURN @ret;
|
|
|
|
END |