örneğin wp_posts tablosundaki post_content yani yazı içeriğinini bulunduğu bölümde sorun varsa aşağıdaki gibi toplu değişiklik yapılabilir
UPDATE wp_posts SET
post_content=REPLACE(post_content,'Ç','Ç'),
post_content=REPLACE(post_content,'Åz','Ş'),
post_content=REPLACE(post_content,'ÅŸ','ş'),
post_content=REPLACE(post_content,'Äž','Ğ'),
post_content=REPLACE(post_content,'ÄŸ','ğ'),
post_content=REPLACE(post_content,'İ','İ'),
post_content=REPLACE(post_content,'ç','ç'),
post_content=REPLACE(post_content,'ı','ı'),
post_content=REPLACE(post_content,'Ö','Ö'),
post_content=REPLACE(post_content,'ö','ö'),
post_content=REPLACE(post_content,'Ü','Ü'),
post_content=REPLACE(post_content,'ü','ü');
farklı tablolar için UPDATE bölümünde ana tablo ismini giriyoruz post_content bölümlerinede içerideki tablonun ismini giriyoruz
bu işi yapmadan önce mutlaka yedek alın birde sorun çıkar mysqle hata verirse ' işaterlerini " yapıp deneyin