Hey guys, im having trouble joining two tables into one. Both have different columns, and a matching id. When I try:
SELECT *
INTO FinalTable
FROM Table 1
Full Join Table 2
ON Table1.id = Table2.id
I get an error saying that both tables contain ID. How could I do this without having to specify every column? Each of these tables has over 100 columns.
Thanks
SELECT *
INTO FinalTable
FROM Table 1
Full Join Table 2
ON Table1.id = Table2.id
I get an error saying that both tables contain ID. How could I do this without having to specify every column? Each of these tables has over 100 columns.
Thanks
Comment