0 votes
in SQLite by

What is SQLite INNER JOIN?

1 Answer

0 votes
by

SQLite INNER JOIN is simplest and most common join. It combines all rows from both tables where the condition is satisfied.

Syntax:

SELECT ... FROM table1 [INNER] JOIN table2 ON conditional_expression ...      

...