Forum Moderators: open
Example:
Grab text from the first instance of "Cheap cars" until "."
Tried the following sql but it only displays partial info and doesn't begin the display given the requirement I've stated above.
Any ideas would be appreciated.
SELECT description, SUBSTRinG(description, LOCATE(description, 'cheap cars')-100, 30) as description, match(description) against ('cheap cars') as score from tbl_2 where match (description) against ('cheap cars')