mysql關於日期儲存的細節

2021-06-21 15:06:36 字數 412 閱讀 9095

mysql中的日期型別

如果:birthday date 採用date型別

插入語句:insert into student(birthday) values(19920506);沒問題

資料庫儲存的資料:1992-05-06

採用:insert into student(birthday) values(1993-06-06);會有問題

如果:birthday datetime 採用datetime型別

插入語句:  insert into student(birthday) values(19920506);沒問題

資料庫儲存資料:  1992-05-06 00:00:00

採用:insert into student(birthday) values(1993-06-06);會有問題

mysql關於日期 關於mysql日期的一些例子

mysql中的月份計算 減少乙個月,比如 原來的subtime 2006 10 22 12 22 22 減少後變成 2006 9 22 12 22 22 update message set subtime date sub subtime,interval 1 month 增加乙個月 update...

mysql關於日期 MySQL關於日期的查詢sql

查詢今天的記錄 select from wmacc.cash trade record where to days create date to days now select from wmacc.cash trade record where date format create date,y ...

關於mysql儲存過程

刪除 drop procedure if exists 名稱 建立例項 create procedure add caller myuid int,fwuid int,dt datetime,out returnvalue int begin declare exresult int declare...