我在下面得到这样的结果。

212.212.212.212,
212.212.212.211,
212.212.212.213, 10.16.10.10,
212.212.212.215,


我怎样才能只选择

212.212.212.213,
212.212.212.213,
212.212.212.215,


用mysql regexp?

select numbers from table where numbers REGEXP ', $'


这样就可以了。

不:每个逗号后都有空格。

最佳答案

select numbers from table where numbers REGEXP '^[^,]+, $'


但是实际上,您首先不应该在数据库表中存储逗号分隔的值。

10-06 11:30