insert文のvaluesで副問い合わせを使う書き方メモ

テーブル名などは適当です。
このSQLの場合、anyというカラムにvaluesにある副問い合わせの結果がinsertされます。

insert 
into table1( 
  any
) 
values ( 
  ( 
    select
      id 
    from
      table2
    where
      id = 5
  ) 
);