zoukankan
html css js c++ java
Oracle 《积累章》 根据身份证号码更新当前出生日期
update
TABLE
t
set
t.csrq
=
to_date(substr(t.sfzh,
7
,
8
),
'
yyyy-MM-dd
'
)
函数使用
to_date() 日期转换函数
to_date(substr(t.sfzh,7,8),'yyyy-MM-dd') 将“19901212” 转化为 ”1990-12-12“
substr() 字符串截取
substr(t.sfzh,7,8) 从身份证的第7位开始截取 8个数字
查看全文
相关阅读:
mysql 函数在源码中的定义
mydumper工作原理 :myownstars专家
drop table big_table 调试
debugfs恢复文件
Linux内核里的DebugFS
在Linux环境中使用Ext3文件系统
strace
通过blktrace, debugfs分析磁盘IO
block_dump观察Linux IO写入的具体文件(mysqld)
Centos下的IO监控与分析
原文地址:https://www.cnblogs.com/javaLin/p/9396674.html
最新文章
C#中使用设置(Settings.settings) Properties.Settings.Default
WPF 的另类资源方式 Resources.resx
LINQ(语言集成查询)
WPF之路——用户控件对比自定义控件UserControl VS CustomControl)
WPF学习笔记-用Expression Blend制作自定义按钮
WPF学习笔记-用Expression Design制作矢量图然后导出为XAML
标记扩展和 WPF XAML
如何获取Expression Design 4工具与Expression Blend 4工具
使用线程 Monitor.Wait() 和 Monitor.Pulse()
C#多线程之间事件通知
热门文章
Callgrind 使用 2
valgrind的callgrind工具进行多线程性能分析
Linux系统及应用问题分析排查工具
ltrace killed by SIGTRAP
sqrt 源代码
uuid_short() 源代码
MYSQLD c++函数修饰名转换工具c++filt
kcachegrind gui for callgrind
MySQL对于datetime 源码分析
mysql-internal-manual
Copyright © 2011-2022 走看看