0 votes
in Sql by

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

1 Answer

0 votes
by

Answer: d) None of the above

Explanation: SQLite does not have an IF statement. Instead, you can use a CASE statement.

...