SQL> desc testa;
Name Type         Nullable Default Comments 
---- ------------ -------- ------- -------- 
ID   NUMBER(10)   Y                         
NAME VARCHAR2(50) Y     SQL> insert into testa values(1,'你'||chr(13)||chr(10)||'好');1 row insertedSQL> select * from testa;         ID NAME
----------- --------------------------------------------------
          1 你
            好
--插入了回车和换行,就出来这样的结果,好玩!  chr(13)chr(10)回车换行,--desc 表名   看看你的字段类型,