同じスキーマを持つ2つのテーブル、テーブルAとテーブルBがあります。
| Table [A] | Table [B]
| id value | id value
| 1 15 | 1 19
| 2 18 | 3 28
| 5 22 | 4 39
私がしたいのは:
insert into a select * from b where [b.id not exists in a]
質問:これの構文は何ですか?特に、括弧内の部分は何ですか?