-
- FROM_UNIXTIME(pubtime, '%Y-%m') で記事グループから pubtime として FROM_UNIXTIME(pubtime, '%Y-%m')、cnt として count(*) を選択します
コードをコピー
日付(日)ごとにアーカイブされたPHP記事 SQL
-
- FROM_UNIXTIME(pubtime, '%Y-%m-%d') による記事グループから pubtime として FROM_UNIXTIME(pubtime, '%Y-%m-%d')、cnt として count(*) を選択します
コードをコピー
非タイムスタンプ日付形式アーカイブ (date_format 形式の日付)
-
-
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
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
-
コードをコピー
|