-
The expression ‘HI’ LIKE NULL results in _____________.
-
- 0
- NULL
- False
- True
- None of these
Correct Option: B
In MySQL, any pattern matching that is performed with the ‘NULL’ operand, fails. Expressions like: ‘abcdef’ LIKE NULL, NULL LIKE ‘%’, all result into the value NULL. NULL is not used to perform comparisons.