InterviewSolution
Saved Bookmarks
| 1. |
Which of these operators does not perform relative value comparisons?(a) =(b) ==(c) = |
|
Answer» The correct option is (b) == Explanation: The operators =, <>, >, >=, <, and >= perform relative value comparisons in MySQL. ‘==’ is not a valid comparison operator in MySQL. Such operators are useful in filtering information from a table. |
|