Which of the following is the correct syntax for a LEFT OUTER JOIN in SQLite?
a) SELECT columns FROM table1 LEFT OUTER JOIN table2 ON condition
b) SELECT table1 FROM columns LEFT OUTER JOIN table2 ON condition
c) SELECT columns FROM table1 JOIN table2 ON condition
d) None of the above