What is the problem with this query?
insert into fatora (item_id, item_name, items_number, item_dis, item_sell, fatora_type)
values ( (Select item_id, item_name, item_number, item_dis, item_dis from helper), 1)
I get this error:
Msg 116, Level 16, State 1, Line 2 Only one expression can be specified in the select list when the subquery is not introduced with EXISTS.
Msg 109, Level 15, State 1, Line 1 There are more columns in the INSERT statement than values specified in the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.