Select LEFT('HELLO', 3); What will be the output of the above code?

52. Select LEFT('HELLO', 3)
What will be the output of the above code?

  1. HELL
  2. ELL
  3. OLL
  4. LLO

Answer: A) HELL

Explanation:

LEFT function returns us the left part of the string, according to the specified number of characters, so the output would be HELL

Comments and Discussions!

Load comments ↻






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