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

Mysqlで2つの異なるテーブルを組み合わせて並べ替える方法

    基本的に、union allが必要です :

    select id, username, firstname, event_date
    from ((select id, username, firstname, event_date
           from tablea
          ) union all
          (select id, username, NULL as firstname, event_date
           from tablea
          )
         ) t
    order by event_date;
    


    1. 動的なアクセス許可の制約を体系化して保存する方法は?

    2. Django / MySQL-python-古い(4.1.1より前の)認証プロトコルを使用した接続が拒否されました(クライアントオプション'secure_auth'が有効)

    3. テストファイルを作成できません下位テスト開始サーバーmysql

    4. 複数のテーブルからのMYSQL左結合COUNTS