当前位置: 代码迷 >> Oracle开发 >> oracle大神们给个语句create text语句咯解决方案
  详细解决方案

oracle大神们给个语句create text语句咯解决方案

热度:40   发布时间:2016-04-24 07:31:03.0
oracle大神们给个语句create text语句咯
今天我做文章突然想到context字段内容过大,然后text就出现在我脑海里,我去改表的时候创建text不行,一定是我语法问题,所以小弟还得请大神们给个语句

------解决方案--------------------
SQL code
SQL> create table t(id varchar2(50),context clob); Table createdSQL> insert into t values ('1','111111111111111111111111'); 1 row insertedSQL> commit; Commit completeSQL> select * from t; ID                                                 CONTEXT-------------------------------------------------- --------------------------------------------1                                                  111111111111111111111111
  相关解决方案