mysql取表中《最新》三天的記錄,sql語句怎麼寫

來源:互聯網
上載者:User
mysql取表中 最新三天的記錄,sql語句怎麼寫。從網上查了一條,但這是 以目前時間為起點取最近幾天的記錄select * from rewards where DATE_SUB(CURDATE(), INTERVAL 4 DAY)
<= date(day) order by day desc


回複討論(解決方案)

那麼你說參照點應是什麼呢?

最新三天是今天、昨天和前天。按照目前時間向後推3天進行過濾。

$startDate=date('Y-m-d',strtotime("-29 days"));
$endDate=date('Y-m-d');
$sql="select * from rewards createTime>='".$start." 00:00:00' and createTime<='".$end." 00:59:59'";

那麼你說參照點應是什麼呢? 比方說今天是5月14號,表中的資料day只有到五月10號的,我本意是想取出8、9、10三天的,如果是以14號為參照點往前取三天的,取的是12、13、14三天的(沒資料),就沒法滿足要求吧

最新三天是今天、昨天和前天。按照目前時間向後推3天進行過濾。 看四樓

try

select * from tt inner join(select date(day) as `day` from tt group by date(`day`) order by `day` desc limit 3) aon date(tt.day)=a.day

try

select * from tt inner join(select date(day) as `day` from tt group by date(`day`) order by `day` desc limit 3) aon date(tt.day)=a.day
這個查詢的結果沒有按照日期倒序排列啊怎麼回事?
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.