0 votes
in SQLite by
Explain SQLite CROSS JOIN.

1 Answer

0 votes
by

The SQLite Cross join is used to match every rows of the first table with every rows of the second table. If the first table contains x columns and second table contains y columns then the resultant Cross join table will contain the x*y columns.

Syntax:

SELECT ... FROM table1 CROSS JOIN table2    

Related questions

0 votes
asked Nov 15, 2021 in SQLite by Robin
0 votes
asked Nov 13, 2021 in SQLite by sharadyadav1986
...