mysql語句判斷一天操作記錄的個數

來源:互聯網
上載者:User

標籤:使用   io   art   for   re   c   

話說有一文章表article,儲存文章的添加文章的時間是add_time欄位,該欄位為int(5)類型的,現需要查詢今天添加的文章總數並且按照時間從大到小排序,則查詢語句如下:
 
1    select * from `article` where date_format(from_UNIXTIME(`add_time`),‘%Y-%m-%d‘) = date_format(now(),‘%Y-%m-%d‘);
或者:
 
1    select * from `article` where to_days(date_format(from_UNIXTIME(`add_time`),‘%Y-%m-%d‘)) = to_days(now());
假設以上表的add_time欄位的儲存類型是DATETIME類型或者TIMESTAMP類型,則查詢語句也可按如下寫法:
 
查詢今天的資訊記錄:
 
1    select * from `article` where to_days(`add_time`) = to_days(now());
查詢昨天的資訊記錄:
 
1    select * from `article` where to_days(now()) – to_days(`add_time`) <= 1;
查詢近7天的資訊記錄:
 
1    select * from `article` where date_sub(curdate(), INTERVAL 7 DAY) <= date(`add_time`);
查詢近30天的資訊記錄:
 
1    select * from `article` where date_sub(curdate(), INTERVAL 30 DAY) <= date(`add_time`);
查詢本月的資訊記錄:
 
1    select * from `article` where date_format(`add_time`, ‘%Y%m‘) = date_format(curdate() , ‘%Y%m‘);
查詢上一月的資訊記錄:
 
1    select * from `article` where period_diff(date_format(now() , ‘%Y%m‘) , date_format(`add_time`, ‘%Y%m‘)) =1;
對上面的SQL語句中的幾個函數做一下分析:
 
(1)to_days
 
就像它的名字一樣,它是將具體的某一個日期或時間字串轉換到某一天所對應的unix時間戳記,如:
 
01   mysql> select  to_days(‘2010-11-22 14:39:51‘);    
02    +--------------------------------+                                                      
03   | to_days(‘2010-11-22 14:39:51‘) |
04   +--------------------------------+
05   |                         734463 |
06   +--------------------------------+
07  
08   mysql> select  to_days(‘2010-11-23 14:39:51‘);
09   +--------------------------------+
10   | to_days(‘2010-11-23 14:39:51‘) |
11   +--------------------------------+
12   |                         734464 |
13   +--------------------------------+
可以看出22日與23日的差別就是,轉換之後的數增加了1,這個粒度的查詢是比較粗糙的,有時可能不能滿足我們的查詢要求,那麼就需要使用細粒度的查詢方法str_to_date函數了,下面將分析這個函數的用法。
 
提醒:
 
(1)to_days() 不用於陽曆出現(1582)前的值,原因是當日曆改變時,遺失的日期不會被考慮在內。因此對於1582 年之前的日期(或許在其它地區為下一年 ), 該函數的結果實不可靠的。
 
(2)MySQL"日期和時間類型"中的規則是將日期中的二位元年份值轉化為四位。因此對於‘1997-10-07‘和‘97-10-07‘將被視為同樣的日期:
 
1    mysql> select to_days(‘1997-10-07‘), to_days(‘97-10-07‘);
2   
3    -> 729669, 729669
(2)str_to_date
 
這個函數可以把字串時間完全的翻譯過來,如:
 
1    mysql> select str_to_date("2010-11-23 14:39:51",‘%Y-%m-%d %H:%i:%s‘);
2   
3    +--------------------------------------------------------+
4    | str_to_date("2010-11-23 14:39:51",‘%Y-%m-%d %H:%i:%s‘) |
5    +--------------------------------------------------------+
6    | 2010-11-23 14:39:51                                    |
7    +--------------------------------------------------------+
具體案例操作如下:
 
1    select str_to_date(article.`add_time`,‘%Y-%m-%d %H:%i:%s‘)
2    from article
3    where str_to_date(article.`add_time`,‘%Y-%m-%d %H:%i:%s‘)>=‘2012-06-28 08:00:00‘ and str_to_date(article.`add_time`,‘%Y-%m-%d %H:%i:%s‘)<=‘2012-06-28 09:59:59‘;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.