If I have a field that's a varchar, with a length of 250, and I try to insert/update that field with data that is 300 characters long, mysql will trim the remaining 50 characters from the end of the string.
Is there a way to trim the first 50 characters instead, and use the last 250 characters from a string? I want to do this on the mysql side, opposed to php side, in order to prevent other clients wronly updating the database.
Many thanks in advance for any replies.