0 votes
in Sql by

Which of the following is NOT a valid comparison operator in SQLite?

a) =

b) <>

c) ==

d) LIKE

1 Answer

0 votes
by
Answer: c) ==

Explanation: == is not a valid comparison operator in SQLite. The valid comparison operators are =, <>, <, >, <=, >=, and LIKE.
...