I have to split a string, I need take the first 25 characters and then the others, this is my code
select
SUBSTRING(field, 1, 25),
SUBSTRING(field, 26, (LEN(field)-25))
from table
but I'm getting this for the second substring:
Invalid length parameter passed to the left or substring function
What's wrong in that?
SUBSTRING(field, 25, xxxx)doesn't really make sense - and if the25parameters is greater than the length offield, you get this error