關聯兩個表總體sql 如下:
select b.f_goodsbarcode, a.f_price, a.f_qty, sum(a.f_qty)
* a.f_price as all_price
from t_selldetail a inner join
t_goodsbarcode b on a.f_gid = b.f_goodsid
where (a.f_modify_time between dateadd(day, - 1, getdate()) and dateadd(day, 0,
getdate()))
group by a.f_gid, a.f_price, a.f_qty, b.f_goodsbarcode
篩選當前時間24小時(一天)內的所有資料
1、「t_selldetail a inner join t_goodsbarcode b on a.f_gid = b.f_goodsid」 該段使用了內鏈結類似於
selct * from t_selldetail where f_gid in (select f_goodsid from t_goodsbarcode)
2、「dateadd(day, - 1, getdate())」 時間的表示法:
getdate()表示當前時間(等同於now(),但now()的用法是),
day,-1:以時間天為單位一天前(year,-1:一年前;month,-1:一月前)
Django中條件過濾 按時間篩選
我在models中的字段為datetimefield,那麼我該如何構造乙個時間格式來和它比較呢?索性我們有datetime模組 import datetime now datetime.datetime.now 獲取現在的時間 start datetime.timedelta hours 23,mi...
linux下使用awk命令按時間段篩選日誌
很多時候我們需要按照時間段來進行日誌的分析,比如說檢視上午的,或者某月某日的的具體日誌,就不能簡單實用tail f或者head n命令了。這個時候我們需要借用awk。zcat com.log20160529.gz grep dianping reply.log awk 掃瞄gz壓縮檔案,從中尋找帶有...
MySQL按時間分組
select from unixtime time y m d as time from 表名 where 1 group by time 如果需要詳細資訊,再遍歷時間獲取 類似這種形式 這個是我在工作中的乙個頁面展示 from unixtime的語法 from unixtime unix time...