티스토리 뷰

🌈 MsSql

CHARINDEX

James Wetzel 2022. 8. 9. 17:35
728x90
반응형

This function searches for one character expression inside a second character expression, returning the starting position of the first expression if found.

 

특정 문자열의 시작 위치 값을 반환합니다.

DECLARE @document VARCHAR(64);  
SELECT @document = 'Reflectors are vital safety' +  
                   ' components of your bicycle.';  
SELECT CHARINDEX('bicycle', @document);  
GO
728x90
반응형