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

イベントの最新の日付でグループ化されたテーブル結合から個別の順序対を選択します

    これを試してください:

    (select a.id, a.name, b.name, b.message, a.created_at from a left join b on a.id=b.aid where a.name='John' order by a.created_at desc limit 1)
    union all
    (select a.id, a.name, b.name, b.message, a.created_at from a left join b on a.id=b.aid where b.name='John' order by a.created_at desc limit 1)
    


    1. pipフリーズはhelp('modules')とは異なるモジュールを提供します

    2. Springjdbcoracleを使用したセッションタイムゾーンの設定

    3. JDBC接続のAutoCommitプロパティを複数回変更できますか

    4. PostgresGISTとBtreeインデックス