updating in MySQL
hi guys
i 'm having problem in searching and replacing text in specific field. well i know about mysql update command and have lookup up regexp but not solved. typical data is : abcQFxyz to chnage to abcQFIxyz.
I got as far as:
UPDATE mytable SET myfield = QFI WHERE part_number REGEXP 'QF';
but I know that wrong.
Thanks for your help.