I'm usig Oracle 11g to result based on Persian serach match from DB but result I'm getting is nothing, would you please assist how can I search for a result that part of a field name "address" matched with "تهران", thanks
Below query give me no result!
select t1.pname from tableName t1 where t1.address like '%تهران%'
Edit:
Type of column address is varchar2
, my DB characterset is AL32UTF8
, and I'm on PL/SQL Developer GUI, and running below query gives me %?????%
as result.
select '%تهران%' as a from dual;
I tried the same in SQL*Plus, but no luck and same empty result.