Im hoping someone can help with this one, i have a field in a table that contains a 6 digit number followed by a description, i want to split this into 2 fields, the number and the description seperated ?
SUBSTR([i]CombinedField[/i],7,LEN(TRIM(CombinedField))-6) AS MyDescriptionField
- the LEN bit will calculate the length of the trimmed field and then substract 6 from this... as you've already taken the first six characters for your number field
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.