1
Reply

What is meant by TRIM() function in SQL Server?

John

John

May 07, 2012
1.3k
0

    There is no Trim() function SQL server. LTRIM and RTRIM function is available with SQL server.RTRIM – Removes the Spaces on the right side or leading spaces of the string LTRIM – Removes the Spaces on the left side or trailing spaces of the string

    Jignesh Trivedi
    April 24, 2014
    0