I need advices in order to make a process on my list of values. I have a table llx_societe and some fields where one of them is code_client. This f
llx_societe
code_client
Try this:
UPDATE llx_societe SET code_client= SUBSTR(code_client, 2) WHERE code_client between '00100' AND '00999'
MySQL SUBSTR() function