我是靠谱客的博主 年轻音响,最近开发中收集的这篇文章主要介绍mysql截取后八位_截取字符串中前8个数字,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先替换非数字的为空,再截取

with tmp_a as (

select '2018-10-15 12:30:59' update_time from dual union all --结果是 20181015

select '2017/10/16 12:30:59' update_time from dual union all --结果是 20171016

select '20151015 12:30:59'   update_time from dual union all --结果是 20151015

select null                  update_time from dual union all --结果是 空

select '201510'              update_time from dual union all --结果是 201510

select '20131015123059'      update_time from dual           --结果是 20131015

)

select substr(regexp_replace(update_time,'[^0-9]'),1,8) 截取前8个数字 from tmp_a

最后

以上就是年轻音响为你收集整理的mysql截取后八位_截取字符串中前8个数字的全部内容,希望文章能够帮你解决mysql截取后八位_截取字符串中前8个数字所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部