mellenburg
Programmer
I have two table that I would like to merge. They have no common variable on which to do a join. Each table has the same number of records and I want one table with all the data in the other two tables. The code:
create table newtable
select t1.*, t2.*
from table1 as t1, table2 as t2
gives me the cartesian product of the two tables. How can I modify the code so that I get the table I want?
create table newtable
select t1.*, t2.*
from table1 as t1, table2 as t2
gives me the cartesian product of the two tables. How can I modify the code so that I get the table I want?