Hey guys,
Was wondering if anyone can help? I have a single field in a database which is actually a string of strings delimited by a comma, e.g.:
$alternativeNames = "name1, name2, name3, name4" ;
If was wondering if there was anyway to individually extract the substrings for comparison or output.
For example, is there any way using an SQL statement that I can extract the row that will has the substring 'name3' in the alternativeNames column?
I am trying not to have to return all results from the database and then perform explode/tokenizer functions on the strings to produce results as per the memory/performance overhead.