sql >> データベース >  >> RDS >> Mysql

結果を日付で並べ替えてグループ化

    これはアイデアです:

    <?php
        $sql = "SELECT * FROM posts ORDER by post_date DESC";
        $res = mysql_query($sql);
    
        $previous_date = "";
        while($post = mysql_fetch_assoc($result)){
            //here goes the date
            if($post['post_date'] != $previous_date){
                echo $post['post_date'];
                echo "<br>--------------------<br>";
                $previous_date = $post['post_date'];
            } 
            //here goes the post
            echo "Post:{$post['title']}<br>";
        }
    ?>
    


    1. SQLServerで現在使用されている言語を取得する

    2. <img src =/ img.php?imageID =32 />のような画像を表示するようにphpファイルをスクリプト化するにはどうすればよいですか?

    3. CLOBをOracleデータベースに挿入します

    4. Access2022を含むMicrosoftAccessの最新ニュースをチェックしてください!