テーブルの結合備忘録

SQLのfrom句にテーブルをカンマ区切りで複数並べる場合、クロス結合となる。
クロス結合はcross join句を使用しても記述できる。

以下の2つは同じ。

select * from table1, table2;
select * from table1 cross join table2;

参考(https://codezine.jp/article/detail/17333)