How can I use string replace in SQL Server? I want to rename “Ä?” to “c”
For example:
roÄ?no_orodje_unior_1600e1.jpg -> rocno_orodje_unior_1600e1.jpg
and here also string replace “Ä?” to “c” and remove everything beyond,
roÄ?no_orodje_unior_1913.jpg,roÄ?no_orodje_unior_1 -> rocno_orodje_unior_1913.jpg
Can I do this with SQL Server or must I use C# ??
use the replace function…example