Given the following:
Job Description Name Salary Amount
Programmer Smithson, John 55, 000
Salesman Germain, Frank 75, 000
Carpenter Johnson, Mark 40, 000
The manager of the Marketing Department noticed that the Name results on the monthly reports are being truncated as Smith, Germa, Johns. The manager asked the IT Department to investigate this issue.
Which function caused this problem?
- TRIM(Name)
- POSITION(Name, 5)
- CHAR_LENGTH(Name, 5)
- CAST(Name AS CHAR(5))
- TRIM(TRAILING FROM Name)
Reveal Solution
Next Question