当前位置:网站首页>Incorrect datetime value: '2022-01-01' for function str_to_date
Incorrect datetime value: '2022-01-01' for function str_to_date
2022-08-03 03:04:00 【The orange is not orange】
mysql encountered this problem during the insert into operation.
Incorrect datetime value: '2022-01-01' for function str_to_date
select str_to_date('2022-01-01', '%Y%m%d') fromdual;show warnings;Execution result:
Reason: str_to_date('2022-01-01', '%Y%m%d') does not match the format.
Solution: str_to_date('20220101', '%Y%m%d')
Summary: Either all -, or none of -, or other formats, in short, should be unified.
边栏推荐
猜你喜欢
随机推荐
LabVIEW程序框图保存为图像
LVS负载均衡群集及部署LVS-NAT实验
Likou second week wrong questions collection
45部署LVS-DR群集
韦东山 数码相框 项目学习(五)libjpeg-turbo的移植
【7.31】代码源 - 【矩阵操作】【宝箱】【New Stone Game】【等差数列】
新库上线 | CnOpenDataA股上市公司董监高信息数据
【Flink】使用arthas在线诊断flink的那些事
暴力递归到动态规划 08(小马走象棋)
扩展卡尔曼滤波【转】
会话技术!
企业云成本管控,你真的做对了吗?
PHICOMM(斐讯)N1盒子 - recovery模式救砖卡登录页LOGO卡1%卡4%卡26%
ssh(sshd)安全配置
部门之间,互不信任正常吗?(你是否遇到过)
Shell脚本乘法口诀等小实验
qt opengl 使用不同的颜色绘制线框三角形
复杂多层布局的初级智能文本提示器
13-security其他.md
Violent recursion to dynamic programming 06 (the sword refers to Offer II 095. Longest common subsequence)









