Cross Join in SQLite
SQLite Cross Join To join each row of the first table (of x number of rows) with each row of the second table (of y number of rows), the Cross join is used in SQLite. The resultant thus contains x*y number of rows. Syntax: SELECT columns FROM table1 CROSS JOIN table2 Example: STUDENTS Table: STUDENT_ID … Read more