I have many fields that contains extra space in start, like:
" RTX 3060"
-^
I want to remove first extra space from all fields of this table.
What I tried:
UPDATE table set field = concat( '', substring(field , 1)) where left(field ,1)=' ';
Return 0 result!
UPDATE table set field = concat( '', substring(field , 2)) where field LIKE " %"orUPDATE table set field = substring(field , 2) where field LIKE " %"REGEXP_REPLACE.