Posts by Claudio Pimenta • 11 points
1 post
-
-2
votes5
answers11633
viewsA: How to do a LIKE ignoring accentuation?
create or alter function alfaNum (texto varchar(100)) returns varchar(100) as declare variable stAux varchar(100) = ''; BEGIN stAux = upper(:texto); stAux = replace(stAux,…