Is it possible to do something like this:
Insert into Table1([field1],[field2],[field3]) values(18, select Table2.field1, Table2.Field2)
I am getting an error that says destination fields and values have a different number but they don't. That leads me to believe that my subquery is being counted as one value, when it really returns two. Has anyone encountered this before??
Insert into Table1([field1],[field2],[field3]) values(18, select Table2.field1, Table2.Field2)
I am getting an error that says destination fields and values have a different number but they don't. That leads me to believe that my subquery is being counted as one value, when it really returns two. Has anyone encountered this before??