Forum Replies Created

Viewing post 1 (of 1 total)

  • Reply To: LTRIM and RTRIM not working

    My workaround if you have one space at the end:

    update tableName set PayeeName = PayeeName + '_Serengeti' where right(PayeeName,1) = ' '
    update tableName set PayeeName = Replace(PayeeName,'...

Viewing post 1 (of 1 total)