Which of the following is the correct syntax for an IF statement in SQLite?
a) IF condition THEN statement END IF
b) IF statement THEN condition END IF
c) IF condition statement END IF
d) None of the above
Answer: d) None of the above
Explanation: SQLite does not have an IF statement. Instead, you can use a CASE statement.