I have a query as below, that selects Description from table where description contains 'legal:'
At the moment it extracts everything in Description field. What I want to do is only extract 50 characters from 'legal:' keyword on.
SELECT Description
FROM Issues
WHERE
Description like '%legal:%'
Any help appreciated.