How to remove all left and right spaces from string
Summary
Use the following sql to remove all left and right spaces from a string.
Use the following sql to remove all left and right spaces from a string.
SELECT RTRIM(LTRIM(' shhdhddhffdhhfdhjfhjfjhf ')) FROM DUAL;
Comments
Post a Comment