私は現在insert文を書いていますが、「ORA-00923: From keyword not found where expected.これを達成できる方法はありますか?ありがとうございます。文は次のとおりです:
Insert into seda_owner.seda_lookup(table_name,description,sequence,value)
Select 'DEFAULT_CATE_CHG_ITEMS_DOCS','Software Requirements Specification', '1',
(select **value** from seda_owner.seda_document a
join seda_owner.seda_lookup b
on b.value = a.guid and description = 'Software Requirements Specification');
私がやろうとしているのは、3 つの文字列 table_name、description、sequence と 1 つの変数値をテーブル seda_lookup に渡すことです。