나는 이것이 매우 늦다는 것을 알고 있지만 비슷한 상황이 있었다. 내가 가지고있는 일련의 저장 프로 시저에 대해 "좋아요"연산자가 필요했습니다.이 프로시 저는 많은 매개 변수를 허용 한 다음 해당 매개 변수를 사용하여 여러 RDBMS 시스템에서 데이터를 집계하므로 RDBMS 관련 트릭은 작동하지 않지만 저장 프로 시저 및 함수는 작동하지 않습니다. MS SQL Server에서 실행되므로 각 RDBMS에 대해 전체 SQL 문을 생성하는 기능에 T-SQL을 사용할 수 있지만 출력은 RDBMS와 무관해야합니다.
이것은 분리 된 문자열 (예 : 저장 프로 시저로 오는 매개 변수)을 SQL 블록으로 전환하는 순간에 내가 생각해 낸 것입니다. "LIKE IN"의 "이끼"라고합니다. 알 겠어요?
이끼 .sql
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =======================================================================
-- Lichen - Scalar Valued Function
-- Returns nvarchar(512) of "LIKE IN" results. See further documentation.
-- CREATOR: Norman David Cooke
-- CREATED: 2020-02-05
-- UPDATED:
-- =======================================================================
CREATE OR ALTER FUNCTION Lichen
(
-- Add the parameters for the function here
@leadingAnd bit = 1,
@delimiter nchar(1) = ';',
@colIdentifier nvarchar(64),
@argString nvarchar(256)
)
RETURNS nvarchar(512)
AS
BEGIN
-- Declare the return variable here
DECLARE @result nvarchar(512)
-- set delimiter to detect (add more here to detect a delimiter if one isn't provided)
DECLARE @delimit nchar(1) = ';'
IF NOT @delimiter = @delimit
SET @delimit = @delimiter
-- check to see if we have any delimiters in the input pattern
IF CHARINDEX(@delimit, @argString) > 1 -- check for the like in delimiter
BEGIN -- begin 'like in' branch having found a delimiter
-- set up a table variable and string_split the provided pattern into it.
DECLARE @lichenTable TABLE ([id] [int] IDENTITY(1,1) NOT NULL, line NVARCHAR(32))
INSERT INTO @lichenTable SELECT * FROM STRING_SPLIT(@argString, ';')
-- setup loop iterators and determine how many rows were inserted into lichen table
DECLARE @loopCount int = 1
DECLARE @lineCount int
SELECT @lineCount = COUNT(*) from @lichenTable
-- select the temp table (to see whats inside for debug)
--select * from @lichenTable
-- BEGIN AND wrapper block for 'LIKE IN' if bit is set
IF @leadingAnd = 1
SET @result = ' AND ('
ELSE
SET @result = ' ('
-- loop through temp table to build multiple "LIKE 'x' OR" blocks inside the outer AND wrapper block
WHILE ((@loopCount IS NOT NULL) AND (@loopCount <= @lineCount))
BEGIN -- begin loop through @lichenTable
IF (@loopcount = 1) -- the first loop does not get the OR in front
SELECT @result = CONCAT(@result, ' ', @colIdentifier, ' LIKE ''', line, '''') FROM @lichenTable WHERE id = @loopCount
ELSE -- but all subsequent loops do
SELECT @result = CONCAT(@result, ' OR ', @colIdentifier, ' LIKE ''', line, '''') FROM @lichenTable WHERE id = @loopCount
SET @loopcount = @loopCount + 1 -- increment loop
END -- end loop through @lichenTable
-- set final parens after lichenTable loop
SET @result = CONCAT(@result, ' )')
END -- end 'like in' branch having found a delimiter
ELSE -- no delimiter was provided
BEGIN -- begin "no delimiter found" branch
IF @leadingAnd = 1
SET @result = CONCAT(' AND ', @colIdentifier, ' LIKE ''' + @argString + '''')
ELSE
SET @result = CONCAT(' ', @colIdentifier, ' LIKE ''' + @argString + '''')
END -- end "no delimiter found" branch
-- Return the result of the function
RETURN @result
END -- end lichen function
GO
구분 기호 감지가 계획되었을 수 있지만 현재는 세미콜론으로 기본 설정되어 있으므로 default
여기에 넣으면 됩니다. 아마도 이것에 버그가있을 것입니다. 그만큼@leadingAnd
매개 변수는 블록 앞에 선행 "AND"를 추가하여 다른 WHERE 절 추가에 잘 맞도록할지 결정하는 비트 값입니다.
사용법 예 (arrgString에 구분 기호 포함)
SELECT [dbo].[Lichen] (
default -- @leadingAND, bit, default: 1
,default -- @delimiter, nchar(1), default: ';'
,'foo.bar' -- @colIdentifier, nvarchar(64), this is the column identifier
,'01%;02%;%03%' -- @argString, nvarchar(256), this is the input string to parse "LIKE IN" from
)
GO
다음을 포함하는 nvarchar (512)를 반환합니다.
AND ( foo.bar LIKE '01%' OR foo.bar LIKE '02%' OR foo.bar LIKE '%03%' )
입력에 구분자가 포함되어 있지 않으면 블록을 건너 뜁니다.
사용법 예 (argString에 구분 기호없이)
SELECT [dbo].[Lichen] (
default -- @leadingAND, bit, default: 1
,default -- @delimiter, nchar(1), default: ';'
,'foo.bar' -- @colIdentifier, nvarchar(64), this is the column identifier
,'01%' -- @argString, nvarchar(256), this is the input string to parse "LIKE IN" from
)
GO
다음을 포함하는 nvarchar (512)를 반환합니다.
AND foo.bar LIKE '01%'
나는 이것에 대해 계속 연구 할 것이므로, (눈에 띄게 또는 다른 방식으로) 무언가를 간과했다면 자유롭게 의견을 말하거나 연락하십시오.