Mysql 某个字段仅保留数字

**mysql 查询语句,针对字段去掉数字之外的内容仅保留数字的三种方式
**

1、使用cast函数转变数据类型

select cast('[email protected]' as unsigned)

结果:123456

2、该方式未知原因(知道的小伙伴欢迎留言)

select  -(-'[email protected]')

结果:123456

3、字段后加0进行运算强转

select  "[email protected]"+0;

结果:123456

以上方式都有一个问题会存在数据舍弃例如,如果要完成保留还是需要使用正在表达式过滤来实现

select  "[email protected]"+0;

结果:123456

你可能感兴趣的:(Mysql,mysql)