InterviewSolution
Saved Bookmarks
| 1. |
Which of these operators does not perform relative-value comparisons?(a) =(b) ==(c) = |
|
Answer» Correct choice is (b) == To explain: 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. |
|