ホームページ >バックエンド開発 >PHPチュートリアル >データベースの問題についてアドバイスをお願いします。毎日データが保存されているテーブルがあります。月ごとのデータ項目の数を取得する方法があります。
これは ec_ip_article テーブルです。iptime は毎日のタイムスタンプです。 SQL を毎月 1 つずつ取り出して数をカウントするのは面倒です。もっと簡単な方法はありますか?
select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1
select FROM_UNIXTIME(iptime,'%Y%m%d'),count(0) from ec_ip_article group by FROM_UNIXTIME(iptime,'%Y%m%d')
select FROM_UNIXTIME(iptime,'%Y%m%d'),count(0) from ec_ip_article group by FROM_UNIXTIME(iptime,'%Y%m%d')
SELECT ip_id,count(ip_id) count,FROM_UNIXTIME(iptime, '%Y%m%d') date FROM test GROUP BY FROM_UNIXTIME(iptime, '%c') ORDER BY iptime
select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1内の %Y-%m は次のとおりですそれはタイムスタンプですか?
これは ec_ip_article テーブルです。iptime は毎日のタイムスタンプです。 SQL を毎月 1 つずつ取り出して数をカウントするのは面倒です。もっと簡単な方法はありますか?
$sql="select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1 where user_id=392";$result=mysql_query($sql);$row=mysql_fetch_row($result);dump($row);なぜ取り出せないのですか?
select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1
$sql="select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1 where user_id=392";$result=mysql_query($sql);$row=mysql_fetch_row($result);dump($row);なぜ取り出せないのですか?
無理です!どうやって書いたんですか?
テスト ケース
mysql_connect();mysql_select_db('test');mysql_query("create temporary table ec_ip_article ( iptime int )");$a = array('2015-02-10', '2015-02-20', '2015-03-10','2015-04-10','2015-04-21',);foreach($a as $t)mysql_query(sprintf("insert into ec_ip_article values (%d)", strtotime($t)));$sql = "select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1";$rs = mysql_query($sql);while($r = mysql_fetch_assoc($rs)) echo join(' ', $r), PHP_EOL;
2015-02 22015-03 12015-04 2
テスト ケース
mysql_connect();mysql_select_db('test');mysql_query("create temporary table ec_ip_article ( iptime int )");$a = array('2015-02-10', '2015-02-20', '2015-03-10','2015-04-10','2015-04-21',);foreach($a as $t)mysql_query(sprintf("insert into ec_ip_article values (%d)", strtotime($t)));$sql = "select FROM_UNIXTIME(iptime,'%Y-%m') as m, count(*) as cnt from ec_ip_article group by 1";$rs = mysql_query($sql);while($r = mysql_fetch_assoc($rs)) echo join(' ', $r), PHP_EOL;
2015-02 22015-03 12015-04 2ec_ip_article テーブルの最後にユーザー ID フィールドがある場合、ユーザーごとの統計月数を指定する場合、末尾に where を追加するだけではできません