--我测试了,应该没什么问题.create type test_type as object(id numeric(18,2),name varchar2(20));create table test0(
id int,
name varchar2(20),
xx test_type);insert into Test0 select 1,'中文显示',test_type(1,'中文显示') from dual;