Home »
MCQs »
Transact-SQL (T-SQL) MCQs
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?
- HELL
- ELL
- OLL
- 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