0
我試圖在子表中使用子查詢插入兩行。將SQL插入到多行的表中
的HISTORYTEACHEAS關係有(ID,COURSE_ID,sec_id,學期一年)
insert into HISTORYTEACHES
values('2',(select c.course_id from HISTORYCOURSE c where c.course_id like '2%'),'1','Spring','2016');
的ID,sec_id,學期一年設置,COURSE_ID是什麼需要被發現,所以我使用子查詢從找到它。子查詢本身有兩個結果。
我需要一次插入到表中,但無法弄清楚,因爲這種插入只能有一行結果。
非常感謝!有用! :) – RhumB