How to remove last characters in mysql column values ? Posted by admin | Apr 3, 2024 | Tutorial and Samples | 0 | To remove the last characters from values in a MySQL column, you can use the LEFT() function along with the LENGTH() function to achieve this :- UPDATE employee SET address = LEFT(address, LENGTH(address) – 1); 1,855 total views Post Views: 869