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

MySQLは2つのテーブルを結合し、最大数を見つけて順序付けます

    select daybook.userid, count(*) as count 
        from daybook, rating 
        where daybook.userid = rating.userid
        group by daybook.userid
        order by count desc
    

    しかし、実際には日記の表は必要ありません:

    select userid, count(*) as count
       from rating
       group by userid
       order by count desc
    


    1. Oracleの日付

    2. 回復オプションがある場合と回復オプションがない場合のSQLServer復元データベースの調査

    3. MysqlのNULL値と空白値の違い

    4. MySQL match()against()-関連性と列で並べ替えますか?