Mega Code Archive

 
Categories / MSSQL Tutorial / String Functions
 

Finding the Start Position of a String Within Another String

4> 5> SELECT CHARINDEX('String to Find', 'This is the bigger string to find something in.') 6> GO -----------          20 (1 rows affected) 1>