MYSQL資料庫查詢最近一天的資料

2021-10-05 07:23:05 字數 925 閱讀 3136

select

imei as 裝置imei,

longitude as 裝置經度,

latitude as 裝置緯度,

altitude as 裝置高度,

create_time as 接收時間,

battery_level as 電池電量

from

igh_device_data

where imei in

('359972069773130'

)#and create_time>= date_format('2020-04-21 15:00:00','%y-%m-%d %h:%i:%s')

and create_time>= str_to_date(date_format(

now(),

'%y-%m-%d'),

'%y-%m-%d %h:%i:%s'

)

str_to_date(str,format)函式是將時間格式的字串(str),按照所提供的顯示格式(format)轉換為datetime型別的值。date_format(date,format)函式則是把資料庫的日期轉換為對應的字串格式,比較常見,不做解釋。

#指定時間

select str_to_date(

'2020-04-21 10:20:30'

,'%y-%m-%d %h:%i:%s'

)as 時間;

#當前時間

select str_to_date(date_format(

now(),

'%y-%m-%d %h:%i:%s'),

'%y-%m-%d %h:%i:%s'

)as 當前時間

mysql獲取最近一天的資料

獲取從昨天到現在的資料,你可能習慣性的這麼寫了 select from user where date curdate 1事實上這樣寫是不對也不規範的,mysql官網也沒有說日期可以直接加減。我們應該用date sub 函式來實現這個功能 select from user where date da...

一天學會 MySQL 資料庫 筆記

1.如何登陸資料庫伺服器 mysql u root p 123456 2.如何查詢資料庫伺服器中所有的資料庫 show databases 3.如何選中某乙個資料庫操進行作 use sushe 4.如何退出資料庫伺服器 exit 如何建立資料 create dataase test 檢視表 show...

Mysql資料庫第一天

2.驗證是否成功 將mysql的bin路徑新增到系統環境變數path中 window r開啟執行輸入cmd 輸入 mysql u root p 回車 輸入密碼 回車 3.mysql資料庫儲存邏輯 先建立資料庫,再建立資料表,再存資料 4.sql語句 查詢所有資料庫 show databases 5....