查新10分鐘前的所有資料

2021-10-11 04:44:16 字數 839 閱讀 6928

—乙個表查詢某個車輛的前10分鐘的所以資訊並獲取最新的一條資料-------

select

a.cintsid

from

buspriorityrealtimeresult a

where

notexists

(select

1from buspriorityrealtimeresult b where b.dtdata > a.dtdata )

and sysdate -10/

1440

< dtdata

and cbuscardid =

'魯b12345'

—獲取最新id 100545 根據最新的id 獲取他的一通過路口-------

select

sum(tmpcount)

from

(select

count(*

)as tmpcount frombuspriorityresult where cprioritytype=

'綠燈延長'

and cbuscardid=

'魯b12345'

union

allselect

count(*

)as tmpcount from buspriorityresult where cprioritytype=

'紅燈早斷'

and cbuscardid=

'魯b12345'

) a

查詢在五分鐘以內的所有資料

sql語句 字段 date sub now interval 5 second 函式描述 now 返回當前的日期和時間 curdate 返回當前的日期 curtime 返回當前的時間 date 提取日期或日期 時間表示式的日期部分 extract 返回日期 時間按的單獨部分 date add 給日期...

新的3分鐘熱度?

tuesday march 21,2006 10 05am cst 昨晚和老溫學習了一下,突然覺得生物其實蠻有意思的。由乙個細胞就可以產生一整個活蹦亂跳的人,而且整個人身上任意乙個細胞都包含了同樣的資訊,可以再複製乙個人出來。30億個凳子排排坐出來的基因超級密碼決定了一切,有意思!14個月基因的研究...

10分鐘學會ThinkPHP資料分頁

資料 分頁 可能是web 程式設計裡最常用到的功能之一。thinkphp 實現分頁功能十分簡潔。只需要定義 幾個引數 就能搞定。當然,擴充套件也是十分方便的。讓我們現在就開始thinkphp的分頁實現吧。1 首先,我們得建立乙個用於分頁測試的資料庫 test。sql 如下。複製php 內容到剪貼簿p...