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

Oracle11gのUSING句

    いいえ、ONを単に置き換えることはできません USINGを使用 。ただし、USINGを含むようにクエリを書き直すことができます 結合の句。以下の正しい構文を参照してください:

    select e.employee_id,
           e.last_name,
           department_id, --Note there is no table prefix
           d.department_name,
           l.city,
           location_id --Note there is no table prefix
      from employees e
      join departments d
     using (department_id)
      join locations l
     using (location_id)
     where e.manager_id = 149;
    


    1. ピボットする方法は?複数の行を複数の列を持つ1つの行に変換するにはどうすればよいですか?

    2. MySQL UNIX_TIMESTAMP for PostgreSQL

    3. SQL Server Compact Editionでこのクエリを実行するにはどうすればよいですか?

    4. 挿入および更新されたMYSQLレコード数