What will be the output of the below LIKE query (2)?

11. What will be the output of the below LIKE query?

WHERE SALARY LIKE '%9000%'
  1. It will find any value that starts with 9000
  2. It will find any value that ends with 9000
  3. It will find any value that has 9000 at any position.
  4. It will find the value where salary is less than 9000

Answer: C) It will find any value that has 9000 at any position.

Explanation:

It will find any value that has 9000 at any position.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.