I want to make a query that erases the words with length less than 3, that is to say in the phrase "alambre de puas 25 km"
that remains "alambre puas"
, I tried this query but it does not work. Any ideas?
Select REGEXP_REPLACE(columna, '( |^)[a-z]{1,3}$', "" ) as fin
From tab