当前位置:网站首页>MySQL時間、時區、自動填充0的問題
MySQL時間、時區、自動填充0的問題
2022-07-06 12:16:00 【阿杆.】
數據庫時間更新問題 2022/4/13
在數據庫更新用戶信息的時候,每次都會更新注册時間,這一波我屬實是懵逼了。
起初以為是mybatis順帶把注册時間給更新了,然後排查了一下代碼,沒發現問題,打開mybatis日志一看,sql語句也都正確,完全沒有看到更新注册時間的代碼。
轉念一想,沒准是數據庫的問題。發現注册時間這個字段勾選了根據當前時間戳更新的選項,突然懂了,原來這個選項是每次更新內容都會把這個字段給更新了。取消之後再測代碼,一切正常。
數據庫時區錯誤問題 2022/4/20
今天調試了一下某個接口,涉及到時間的,我是從Java裏面獲取當前時間然後轉到數據庫裏的(其實我覺得用數據庫裏的 now
也可以),然後就出問題了,存進去的時間比實際時間要慢幾個小時。
我仔細一想,不會是 new Timestamp(System.currentTimeMillis());
這句代碼獲取的時間又問題吧,果斷測試了一下,發現並不是它的問題,那就肯定是數據庫的問題了,但是我看數據庫自動更新時間戳的那個時間又是對的。想了一下,可能是轉過去的時候,時區的問題。
之前寫yaml配置文件的時候,一直跟著老師寫的,老師也是這麼寫的 jdbc:mysql://127.0.0.1:3306/blog?serverTimezone=UTC
,結果我一百度,好家夥,這個時區是世界統一時間,比北京時間慢8小時,改成 serverTimezone=Asia/Shanghai
就解决了。
數據庫填充0 2022/4/20
在mysql5.6中,int等數字類型可以選擇 填充0
。
填充0的意思不是說默認值為0,而是指 在顯示的時候,默認向左側填充0,即 20 會顯示成 0000000020 ,當然左側的0不一定跟我寫的一樣多,這裏我只是打個比方。
如果不想要自動填充這麼多比特0,直接取消
填充零
這個選項就可以了。
边栏推荐
- JS数组常用方法的分类、理解和运用
- Bubble sort [C language]
- 基于Redis的分布式锁 以及 超详细的改进思路
- Kconfig Kbuild
- 锂电池基础知识
- STM32 how to locate the code segment that causes hard fault
- Machine learning -- decision tree (sklearn)
- Priority inversion and deadlock
- Imgcat usage experience
- There are three iPhone se 2022 models in the Eurasian Economic Commission database
猜你喜欢
Arduino uno R3 register writing method (1) -- pin level state change
JS變量類型以及常用類型轉換
open-mmlab labelImg mmdetection
Missing value filling in data analysis (focus on multiple interpolation method, miseforest)
JS object and event learning notes
【ESP32学习-2】esp32地址映射
Vscode basic configuration
Kconfig Kbuild
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
Machine learning -- linear regression (sklearn)
随机推荐
Kconfig Kbuild
[esp32 learning-2] esp32 address mapping
Redis based distributed locks and ultra detailed improvement ideas
JS 函数提升和var变量的声明提升
Vscode basic configuration
Basic operations of databases and tables ----- creating data tables
Classification, understanding and application of common methods of JS array
Learning notes of JS variable scope and function
Imgcat usage experience
ARM PC=PC+8 最便于理解的阐述
锂电池基础知识
level16
记一次云服务器被密码爆破的经历——关小黑屋、改密码、改端口
C language, log print file name, function name, line number, date and time
Machine learning -- decision tree (sklearn)
Fashion-Gen: The Generative Fashion Dataset and Challenge 论文解读&数据集介绍
Comparison of solutions of Qualcomm & MTK & Kirin mobile platform USB3.0
Inline detailed explanation [C language]
The first simple case of GNN: Cora classification
AMBA、AHB、APB、AXI的理解