In SQL I have a field that has a lot of text in it.
I am trying to find a way to get text from the field if it contains certain words.
An example:
textField = 'This is the value for your spaceID=12345678'
textField = 'This is the value for your typeID=43254364'
So if the textField contains spaceID I want to return the value for it
If textField like spaceID then return 12345678
I am just not sure how to return the value of that ID.