I have two existing tables, with different fields, except for Primary ID (a varchar, not an int). I want to create a third table which is essentially a
varchar
int
For MS SQL use this
SELECT * INTO result FROM table1 INNER JOIN table2 ON table1.id = table2.id