I have a small table of measurement units in Oracle (10.2.0.4). It's defined as
CREATE TABLE Units (
UNIT_ID number,
UNIT varchar2(12)
)
It's populated with a few records, and one of those records has a unit value of 'μL'. When I try to query for that record using this query...
select * from units where unit = 'μL'
.. I get an empty result. I tried using straight SQL inside SQL Developer and also with ODBC parameters, and both cases give me nothing. I can successfully retrieve any of the units that have no such mu character, however. So, how can I successfully retrieve these records? Is it some Oracle character-encoding issue that I am unaware of?