I have been looking for an example of how this might be done in MySQL-- I really would appreciate the help.
Problem --> Need to split string into two columns based on lower case words (acting as delimiters)
Example, say I have a string in a column that says:
Minnesota Bulls at Nevada
I would want:
Column 1 | Column 2
--------------------------
Minnesota Bulls | Nevada
Another Example, say I have:
California Devils playing against the Minnesota Giants
I would want:
Column 1 | Column 2
------------------------------------
California Devils | Minnesota Giants