我想知道是否有可能做一個INSERT語句與已經存在的記錄。例如:
INSERT語句與現有的記錄
insert into tbl(item_name, item_price) values(select item_name, item_price from tbl where id = 5)
說的id是自動遞增的PK。
當我嘗試類似這樣的東西,我得到錯誤:
Msg 156, Level 15, State 1, Line 1
Incorrect syntax near the keyword 'select'.
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ')'.
我失去了一些東西,或者是這是不可能的?
標題編輯... – 2011-02-25 00:28:33