Vao Tsunには、insert . . . select
(そして正当に賛成)
ただし、values()
でサブクエリを使用しようとしています 。これは許可されていますが、サブクエリには独自の括弧が必要です。したがって、バージョンは次のように機能します。
insert into warehouse (name, district_id)
values ( 'Ghodasar-WH', (select id from district where name = 'Ahmedabad') );