|
date Java.sql.Date
Datetime Java.sql.Timestamp
Timestamp Java.sql.Timestamp
Time Java.sql.Time
Year Java.sql.Date
對其進行分析
參考MySql 的reference manual
Date:
A date. The supported range is '1000-01-01' to '9999-12-31'. MySQL displays DATE values in 'YYYY-MM-DD' format, but allows you to assign values to DATE columns using either strings or numbers.
只記錄日期信息,表示范圍為1000-01-01 至 9999-12-31。
MySql 按照YYYY-MM-DD 的方式進行該類字段的顯示。添加該類字段數據,即可以使用字符串類型,也可以使用數字類型
由于Date類型的字段只記錄日期信息,所以如果添加的數據中包含了時間信息,該時間信息將會自動被截斷。
如果要保存時間信息,可以考慮使用DateTime類型。
經過測試,發現如下2種方式可以對Date類型字段進行填充:
按字符串:
insert into time_table(CreateDate) values(‘2007-04-09')
按數字:
insert into time_table(CreateDate) values(20070409)
獲取可以用Java.sql.Date類型獲取
代碼為:
Date dtDate =rsBuffer.getDate("CreateDate");
測試代碼如下:(其中,IDBFace 是自己基于JDBC封裝的一個簡單類, 接受Sql對數據庫進行操作)
復制代碼 代碼如下:
public void testDate()throws SQLException
{
IDBFace DBFace =DBFactory.createMySqlFace();
DBFace.connect();
//清空表
String strDelete ="delete from time_table";
DBFace.update(strDelete);
//添加
String strInsert ="insert into time_table(CreateDate) values(20070409)";
DBFace.update(strInsert);
//獲取
String strSelect ="select * from time_table";
ResultSet rsBuffer =DBFace.select(strSelect);
while(rsBuffer.next())
{
Date dtDate =rsBuffer.getDate("CreateDate");
System.out.println(dtDate.toString());
}
DBFace.close();
}
執行結果: 2007-04-09
DateTime
A date and time combination. The supported range is '1000-01-01 00:00:00' to '9999-12-31 23:59:59'. MySQL displays DATETIME values in 'YYYY-MM-DD HH:MM:SS' format, but allows you to assign values to DATETIME columns using either strings or numbers.
DateTime 與Date最主要的區別在于:DateTime 可以記錄日期和時間信息。而Date只記錄日期信息。表示范圍為: 1000-01-01 00:00:00 至 9999-12-31 23:59:59 MySql的按照YYYY-MM-DD HH:MM:SS對數據進行格式化,允許以字符串和數字的方式提交。
例如以數字的方式進行提交:
insert into time_table(CreateDate) values(20070409132013)
獲取該類型的數據可以使用:Java.sql.Timestamp類型
代碼如下:
復制代碼 代碼如下:
public void testDateTime() throws SQLException
{
IDBFace DBFace =DBFactory.createMySqlFace();
DBFace.connect();
//清空表
String strDelete ="delete from time_table";
DBFace.update(strDelete);
//添加
String strInsert ="insert into time_table(CreateDateTime) values(20070409132013)";
DBFace.update(strInsert);
//獲取
String strSelect ="select * from time_table";
ResultSet rsBuffer =DBFace.select(strSelect);
while(rsBuffer.next())
{
Timestamp tsBuffer =rsBuffer.getTimestamp("CreateDateTime");
System.out.println(tsBuffer.toString());
}
DBFace.close();
}
執行結果: 2007-04-09 13:20:13.0
TimeStamp
A timestamp. The range is '1970-01-01 00:00:00' to partway through the year 2037. A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don't assign it a value yourself. You can also set any TIMESTAMP column to the current date and time by assigning it a NULL value.
與DateTime類型非常相似
范圍為1970-01-01 主站蜘蛛池模板: 在线国产一区二区三区 | 亚洲人人视频 | 精品伊人久久久久7777人 | xxxx网| 香蕉97碰碰视频免费 | 国产精品免费观看视频播放 | 国产精品视频第一区二区 | 国产99久久精品一区二区 | 精品日韩欧美一区二区三区 | 91久久精品日日躁夜夜躁欧美 | 一级做a爰片久久毛片人呢 一级做a爰片久久毛片图片 | 骚碰人人| 国产在线视频h | 中文字幕亚洲国产 | 亚洲最大色视频 | 一区二区三区中文国产亚洲 | 米奇777四色精品人人爽 | 91麻豆精品一二三区在线 | 亚洲一区二区三区网站 | 在线小视频国产 | 日韩一区二区超清视频 | 国产国产人精品视频69 | 久9久9精品视频在线观看 | 色哟哟国产精品 | 成人短视频在线观看 | 精品国产一区二区三区19 | www.色.con| 伊人任线任你躁 | 亚洲免费小视频 | 在线观看成人小视频 | 免费看黄色录像片 | 国产精品一区二区国产 | 亚洲午夜精品aaa级久久久久 | 黄色免费观看网站 | 精品福利视频一区二区三区 | 在线黄色免费 | 午夜精品一区二区三区在线观看 | 亚洲午夜小视频 | 91精品在线观看视频 | 国产在线播放91 | 亚洲精品私拍国产福利在线 |