Answers for "sql server split string last"

SQL
0

sql server split string last

SELECT SUBSTRING( string , LEN(string) -  CHARINDEX('/',REVERSE(string)) + 2  , LEN(string)  ) FROM SAMPLE;
Posted by: Guest on October-14-2021

Code answers related to "sql server split string last"

Code answers related to "SQL"

Browse Popular Code Answers by Language