I completed the queries quiz and was stuck on a question.
Which of the following is NOT a comparison operator in SQL?
!= was an incorrect answer, therefore it IS a comparison operator.
How is ‘!’ used to compare/what does it signify?
I completed the queries quiz and was stuck on a question.
Which of the following is NOT a comparison operator in SQL?
!= was an incorrect answer, therefore it IS a comparison operator.
How is ‘!’ used to compare/what does it signify?
!
is the not operator, so !=
mean not equal.
This can be very useful in a where
condition and more