当前位置:网站首页>MySQL user-defined function ID number to age (supports 15 / 18 digit ID card)
MySQL user-defined function ID number to age (supports 15 / 18 digit ID card)
2022-07-05 14:10:00 【sr_ www】
FUNCTION `idcard2age`(`idcard` varchar(255)) RETURNS int(10)
BEGIN
if(length(idcard)=18)then
return ifnull(timestampdiff(YEAR,substring(idcard,7,8),now()),-1);
elseif(length(idcard)=15)then
return ifnull(timestampdiff(YEAR,concat('19',substring(idcard,7,6)),now()),-1);
end if;
RETURN -1;
END
边栏推荐
- R语言使用MASS包的polr函数构建有序多分类logistic回归模型、使用coef函数获取模型中每个变量(自变量改变一个单位)对应的对数优势比(log odds ratio)
- OSI and tcp/ip protocol cluster
- 蓝桥杯学习2022.7.5(上午)
- Source code analysis of etcd database -- peer RT of inter cluster network layer client
- TiCDC 6.0原理之Sorter演进
- 我为什么支持 BAT 拆掉「AI 研究院」
- Detailed explanation of SSH password free login
- Hide Chinese name
- laravel-dompdf导出pdf,中文乱码问题解决
- 清大科越冲刺科创板:年营收2亿 拟募资7.5亿
猜你喜欢
我为什么支持 BAT 拆掉「AI 研究院」
Recommendation number | what are interesting people looking at?
金融壹账通香港上市:市值63亿港元 叶望春称守正笃实,久久为功
Tidb DM alarm DM_ sync_ process_ exists_ with_ Error troubleshooting
Shenziyu, the new chairman of Meizu: Mr. Huang Zhang, the founder, will serve as the strategic adviser of Meizu's scientific and technological products
[machine learning notes] several methods of splitting data into training sets and test sets
神经网络物联网未来现状和趋势及看法
Attack and defense world crypto WP
Anchor navigation demo
治臻新能源冲刺科创板:年营收2.2亿 上汽创投是股东
随机推荐
laravel-dompdf导出pdf,中文乱码问题解决
PHP basic syntax
荐号 | 有趣的人都在看什么?
Why do I support bat to dismantle "AI research institute"
Requests + BS4 crawl Douban top250 movie information
What is information security? What is included? What is the difference with network security?
PHP5下WSDL,SOAP调用实现过程
Laravel - view (new and output views)
鸿蒙第四次培训
UE source code reading [1]--- starting with problems delayed rendering in UE
关于memset赋值的探讨
故障分析 | MySQL 耗尽主机内存一例分析
R语言ggplot2可视化条形图:通过双色渐变配色颜色主题可视化条形图、为每个条形添加标签文本(geom_text函数)
Liar report query collection network PHP source code
Anchor navigation demo
tidb-dm报警DM_sync_process_exists_with_error排查
R语言使用原生包(基础导入包、graphics)中的boxplot函数可视化箱图(box plot)
[South China University of technology] information sharing of postgraduate entrance examination and re examination
物联网应用技术专业是属于什么类
[js] basic syntax - for loop