ホームページ  >  記事  >  バックエンド開発  >  PHP 記事を日付 (月日) ごとにアーカイブするための SQL ステートメント

PHP 記事を日付 (月日) ごとにアーカイブするための SQL ステートメント

WBOY
WBOYオリジナル
2016-07-25 09:03:511119ブラウズ
  1. FROM_UNIXTIME(pubtime, '%Y-%m') で記事グループから pubtime として FROM_UNIXTIME(pubtime, '%Y-%m')、cnt として count(*) を選択します
コードをコピー

日付(日)ごとにアーカイブされたPHP記事 SQL

  1. FROM_UNIXTIME(pubtime, '%Y-%m-%d') による記事グループから pubtime として FROM_UNIXTIME(pubtime, '%Y-%m-%d')、cnt として count(*) を選択します
コードをコピー

非タイムスタンプ日付形式アーカイブ (date_format 形式の日付)

  1. select date_format(`post_date`,'%Y%m%d') as pubtime, count(*) as cnt from wp_posts where `post_status`='publish' group by date_format( `post_date`,'%Y%m%d') `ID` desc

  2. select date_format(`post_date`,'%Y%m%d') as pubtime,date_format(` post_date`,'%m 月 %d 日') as shijian,count(*) as cnt from wp_posts where `post_status`='publish' group by date_format(`post_date`,'%Y%m%d') order by `ID` 記述制限 0,7

コードをコピー


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。