Merhabalar,
şöyle bir fonksiyon buldum mysql'de bunu yaklasık 2 hafta önce denediğimde oluşturmuştu
show function status ile function lara bakıyorum bu fonksiyon yok hatam nerede acaba
CREATE FUNCTION seo_yap(mix);
BEGIN
DECLARE @seo_title VARCHAR(255);
SET @seo_title=REPLACE(mix,' ','-');
SET @seo_title=REPLACE(seo_title,'ö','o');
SET @seo_title=REPLACE(seo_title,'Ö','o');
SET @seo_title=REPLACE(seo_title,'ş','s');
SET @seo_title=REPLACE(seo_title,'Ş','s');
SET @seo_title=REPLACE(seo_title,'Ç','c');
SET @seo_title=REPLACE(seo_title,'ç','c');
SET @seo_title=REPLACE(seo_title,'Ğ','g');
SET @seo_title=REPLACE(seo_title,'ğ','g');
SET @seo_title=REPLACE(seo_title,'Ü','g');
SET @seo_title=REPLACE(seo_title,'İ','i');
SET @seo_title=REPLACE(seo_title,'ı','i');
SET @seo_title=REPLACE(seo_title,'I','i');
SET @seo_title=lower(seo_title);
SET @seo_title=trim(seo_title);
SET @seo_title=REPLACE(seo_title,' ','-');
SET @seo_title=REPLACE(seo_title,'----','-');
SET @seo_title=REPLACE(seo_title,'---','-');
SET @seo_title=REPLACE(seo_title,'--','-');
RETURN seo_title;
END $$