I have some ISBN data in the field description, the data is formatted like so ISBN:10 (ten digit ISBN number) , the string in the field description is not patterned, for example, it can appear like this
(author name text) (custom name text) ISBN:10 (isbn number) (some other data text) or also like this with just the isbn number ISBN:10 (isbn number) and so on.
I have tried the following LOCATE mysql statement, but this turns out irregular data as it removes some numbers from the ISBN number
SELECT
SUBSTRING(database.description,
LOCATE('ISBN10:', auctions.description)+8)
AS ISBn_number
FROM
database_books AS database