如何通过语句两两组合 生成C表 也就是25条数据
select * from a,b
这表结构怎么能到25条。这关联只有5条记录。
不关联
select a,b from (select t1.A a ,t2.B b from t1,t2)C
SELECT * from a JOIN b
这种写法就是笛卡尔乘积,慎用。
create table c as select * from a,b