Hi,
I guess you can try with mySQl string functions() , so that you can do it through your sql query itself instead of fetching all the values from the db.
- Raja
| [reply] |
| [reply] |
SUBSTRING_INDEX() : Return a substring from a string before the specified number of occurrences of the delimiter
And if you look at the actual description you see that positive n (count of the delimiter) returns the string to the left of the delimiter whilst negative n (e.g. -2) return the substring to the right of the nth delimiter. Now image that the delimiter is ' ' (which can be explicitly stated in Mysql as '<space>').
| [reply] |