LTRIM(str):返回 字符串str的前导(左边)空格字符去掉。

    SELECT '                                11' res
    SELECT LTRIM('                          11') resL

运行结果:

原文地址:https://www.cnblogs.com/Sisiflying/p/5378916.html