JAVA MONGODB 查詢時間段

2021-09-24 12:53:31 字數 600 閱讀 4379

雖然mongodb存的時間為utc時間,與中國相差8小時,但是這並不需要客戶端程式做處理。

******dateformat format = new ******dateformat("yyyy-mm-dd hh:mm:ss");

date starttime = format.parse("2019-06-17 15:37:08");

date endtime = format.parse("2019-06-17 15:40:08");

org.springframework.data.mongodb.core.query.query q = new query();

q.addcriteria(criteria.where("createdate").gte(starttime).lte(endtime));

listtestpos = mongotemplate.find(q, testpo.class);

testpos.foreach(testpo -> );

以上**經過測試,查詢時間段時只需要將date型別的時間格式傳入即可,mongo會自動轉。

查詢出來的結果也是直接轉換好的,不需要再處理。

mysql 查詢時間轉換 Mysql 查詢時間轉換

利用data format函式 select date format now y m d 根據format字串格式化date值 s,s 兩位數字形式的秒 00,01,59 i,i 兩位數字形式的分 00,01,59 h 兩位數字形式的小時,24 小時 00,01,23 h 兩位數字形式的小時,12 ...

linux查詢時間

一 檢視和修改linux的時區 檢視當前時區 命令 date r 修改設定linux伺服器時區 方法 a 命令 tzselect 方法 b 僅限於redhat linux 和 centos 命令 timeconfig 方法 c 適用於debian 命令 dpkg reconfigure tzdata...

優化查詢 節省查詢時間

優化查詢 select from emp2 1 不要使用 select 用具體的字段來代表 不要返回用不到的字段。select ename,sal from emp2 where ename scott select ename,sal from emp2 where ename scott 2 盡...