|
Re: 我怎么模拟不出来
最初由 西门吹牛 发布
[B]create table test (id number(2), state nchar(1));
insert into test values(1,'T');
update test set state ='U' where id =1;
可以运行成功,我的环境是9i + linux [/B]
估计是系统还是版本的问题吧
我的是2K,和8I的
SVRMGR> connect mark/mark
连接成功。
SVRMGR> create table test(id number(2),state nchar(1));
语句已处理。
SVRMGR> insert into test values(1,'T');
insert into test values(1,'T')
*
ORA-12704: 字符集不匹配
SVRMGR> insert into test values(1,N'T');
处理了 1 行。
SVRMGR> |
|