InterviewSolution
Saved Bookmarks
| 1. |
The operator that does not perform relative-value comparisons is ______________(a) =(b) ==(c) = |
|
Answer» Right answer is (b) == The best 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. |
|