How can I replace non-ascii characters with their ascii counterparts in a SELECT
request sent to hive ? That is have accents removed (é
, ê
, è
=> e
) and have other non alphanumeric characters (``) removed.
I know I can use regexp_replace()
but I'd have to deal with every accented/non-accented pair there is. Surely, there is something more practical ?