关于在oracle中存取汉字出现乱码的问题?SQL> select * from v$version;BANNER
----------------------------------------------------------------
Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
PL/SQL Release 8.1.7.4.0 - Production
CORE        8.1.7.0.0        ProductionTNS for IBM/AIX RISC System/6000: Version 8.1.7.4.0 - Production
NLSRTL Version 3.4.1.0.0 - Production
SQL> insert into t values('王珺');1 row insertedSQL> insert into t values('张三');1 row insertedSQL> insert into t values('李阳');1 row insertedSQL> select * from t;A
----------
王?
张三
李阳而我在版本为Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production中却没有问题,
SQL> create table t (a varchar2(10));Table createdSQL> insert into t values('王珺');1 row insertedSQL> select * from t;A
----------
王珺我查了字符集两边都是一样的,请问会是什么原因出现这们的问题呢?谢谢大家