hi there,
when i use the below script to insert 2 columns of a table(named actual flow) into an already existing table (named merged2):
insert into merged2
select ustie, abtie
from actual_flow
i get the following error message:
Msg 213, Level 16, State 1, Line 2
Insert Error: Column name or number of supplied values does not match table definition.
i created 2 columns in merged2 table, named ustie and abtie and the number of values equal to each other in those two tables.
can you see where I am making a mistake?
thanks,
when i use the below script to insert 2 columns of a table(named actual flow) into an already existing table (named merged2):
insert into merged2
select ustie, abtie
from actual_flow
i get the following error message:
Msg 213, Level 16, State 1, Line 2
Insert Error: Column name or number of supplied values does not match table definition.
i created 2 columns in merged2 table, named ustie and abtie and the number of values equal to each other in those two tables.
can you see where I am making a mistake?
thanks,