Login
Remember
Register
Ask a Question
Which of the following is NOT a valid comparison operator in SQLite?
0
votes
asked
Jun 11, 2024
in
Sql
by
rahuljain1
Which of the following is NOT a valid comparison operator in SQLite?
a) =
b) <>
c) ==
d) LIKE
comparison
operator
sqlite
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 11, 2024
by
rahuljain1
Answer: c) ==
Explanation: == is not a valid comparison operator in SQLite. The valid comparison operators are =, <>, <, >, <=, >=, and LIKE.
...