Let's assume I have the following field:
' name sub _blah '
I can get rid of the outside spaces with the TRIM() function but I am actually looking to remove everything after the first space (after the trim).
so:
'name sub _blah' would turn into 'name'
I know this is possible in PHP but I am trying to do on a MySQL only call. Is there a function I do not know about for this?
Thanks!