1-- Example there is a column FULL_NAME which contains two words like "Bob Dylan"
2-- To fetch second word "Dylan" we will use space as a divisor
3-- and take 10 signs after space
4SELECT SUBSTRING(FULL_NAME, (SELECT CHARINDEX(' ', FULL_NAME)+1), 10)
5FROM TABLE_NAME;