|
# 592
xiongye
来自: comefrom
|
|
|
To: eygle
nvarchar2 这种类型的字段,怎么insert 和select出来的不一样啊?
You can create a table using the NVARCHAR2 and NCHAR datatypes. The column length specified for the NCHAR and NVARCHAR2 columns is always the number of characters instead of the number of bytes:
create table test1(id nvarchar2(2));
insert into test1 values('测试');
select * from test1;
表已创建。
已创建 1 行。
ID
测
为什么插入两个字 只选出了一个呢? 谢谢!
From: xiongye 2005.01.13 16:29
|
|
|
|