Is there a way to be able to use at least _
in the left side so the following statement returns 1:
SELECT 1 FROM DUAL WHERE
'te_ephone' like 'tele_ho%'
I want oracle to parse the left side as it parses the right one, to make _ match 'any' char.
Is this possible or is there any workaround to make this work?
To give some context, the final objective is that things like remoñoson
matchs with remonos%
.
Left hand side is a column where I am replacing some characters by _
whilst the start with query with the same replacement.