没有键的mysql连接表

squ*_*ail 1 mysql join

基本问题:如何连接2个表以获得以下输出?

Table1:
"type"
red
blue
big
small
Run Code Online (Sandbox Code Playgroud)

===

Table2:
"object"
cat
person
chair
Run Code Online (Sandbox Code Playgroud)

===

Output:
red cat 
blue cat
big cat
small cat
red person
blue person
big person
small person
red chair
blue chair
big chair
small chair
Run Code Online (Sandbox Code Playgroud)

ase*_*ovm 5

SELECT * FROM Table1 CROSS JOIN Table2
Run Code Online (Sandbox Code Playgroud)