通过SQL中的函数从字符串中删除字母

id     Kms
1      100 kms
2      200 kms
3      50 kms
7      43 kms

如何使用函数从Kms字段中删除kms?

最佳答案

您可以为此使用MySQL中的“替换”功能:

replace(FIELD_NAME, ‘find this string’, ‘replace found string with this string’)


因此将是:

replace(FIELD_NAME, ‘kms’, ‘’)

关于mysql - 通过函数从字符串中删除alpahabets,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18756524/

10-10 09:43