0
我跑這個查詢:插入兩個表中的值到新表
Insert into transaction(matric,surname,other,level,bk_id,bk_title)
values(
(select matric,surname,others,level from member_master),
(select isbn,bk_title from book_master)
)
,但我得到這個錯誤:
column count doesn't match value count at row 1
這不是很清楚你的要求聯繫起來。你提到的錯誤信息似乎很明顯。數據庫表的列數與您的語句中的列數不匹配。如果情況並非如此,請解釋。 – ralfstx
告訴我們你的數據庫圖。你想如何將表分配給對方? – Alex