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

postgreSQL-in vs any

    いいえ、これらのバリアントは同じです:

    ご覧のとおり、実行計画も同じです:

    postgres=# explain select * from foo1 where id in (select id from foo2);
    ┌──────────────────────────────────────────────────────────────────┐
    │                            QUERY PLAN                            │
    ╞══════════════════════════════════════════════════════════════════╡
    │ Hash Semi Join  (cost=3.25..21.99 rows=100 width=4)              │
    │   Hash Cond: (foo1.id = foo2.id)                                 │
    │   ->  Seq Scan on foo1  (cost=0.00..15.00 rows=1000 width=4)     │
    │   ->  Hash  (cost=2.00..2.00 rows=100 width=4)                   │
    │         ->  Seq Scan on foo2  (cost=0.00..2.00 rows=100 width=4) │
    └──────────────────────────────────────────────────────────────────┘
    (5 rows)
    
    postgres=# explain select * from foo1 where id = any (select id from foo2);
    ┌──────────────────────────────────────────────────────────────────┐
    │                            QUERY PLAN                            │
    ╞══════════════════════════════════════════════════════════════════╡
    │ Hash Semi Join  (cost=3.25..21.99 rows=100 width=4)              │
    │   Hash Cond: (foo1.id = foo2.id)                                 │
    │   ->  Seq Scan on foo1  (cost=0.00..15.00 rows=1000 width=4)     │
    │   ->  Hash  (cost=2.00..2.00 rows=100 width=4)                   │
    │         ->  Seq Scan on foo2  (cost=0.00..2.00 rows=100 width=4) │
    └──────────────────────────────────────────────────────────────────┘
    (5 rows)
    


    1. 主キーSQLチュートリアル–データベースで主キーを定義する方法

    2. SQLServerのAlwaysOn可用性グループのトラブルシューティング

    3. LinuxにMicrosoftSQLをインストールする方法

    4. MySQLENUMタイプと結合テーブル