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

複数の最大行を選択する

    select
      x.Domain,
      x.No_of_users
    from
      (select
        d.Domain, 
        count(d.Domain) as No_of_users
      from
        Domain d
      group by 
        d.Domain) x
    where
      x.No_of_users = 
        (select
          max(x2.No_of_users)
        from
          (select
             d2.Domain,
             count(d2.Domain) as No_of_users
          from
             Domain d2
          group by 
            d2.Domain) x2)
    


    1. 再起動後にシェルスクリプトを続行するにはどうすればよいですか?

    2. MySQLコマンド:一般的なMySQLクエリのチートシート

    3. JDBC経由で接続するときにセッション情報にアプリケーション名を表示する

    4. PostgreSQL接続プール:パート2 – PgBouncer