Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which of the following is NOT a valid comparison operator in SQLite?
Home
Sql
Which of the following is NOT a valid comparison operator in SQLite?
0
votes
asked
Jun 11
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
by
rahuljain1
Answer: c) ==
Explanation: == is not a valid comparison operator in SQLite. The valid comparison operators are =, <>, <, >, <=, >=, and LIKE.
...