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

PostgreSQL:左外部結合構文

    select u.id,
           u.first_name,
           u.city,
           u.avatar,
           coalesce(m.money,0),
           u.login > u.logout as online
      from pref_users u left outer join pref_money m on u.id=m.id
           and m.yw=to_char(current_timestamp, 'YYYY-IW') 
     where u.id='DE2'
     order by m.money desc;
    


    1. mysqlテーブルのインデックスを再作成する方法

    2. ピボット/ピボット解除テーブルmysql

    3. where句に列を追加するクエリのMySQLパフォーマンス

    4. MySQLで一重引用符、二重引用符、およびバッククォートを使用する場合