in MYSQL, given a line with dots in it, I want to select everything to the last point. for example: input
www.java2s.com
output:
www.java2s
substring_index seems to do the opposite:
mysql> SELECT SUBSTRING_INDEX ('www.java2s.com', '.', -1);
+ -------------------------------------------- +
| SUBSTRING_INDEX ('www.java2s.com', '.', -1) |
+ -------------------------------------------- +
| com |
+ -------------------------------------------- +
Can this be done?
source
share