zoukankan      html  css  js  c++  java
  • oracle数据类型varchar2和varchar的区别

    varchar -- 存放定長的字符數據,最長2000個字符;
    varchar2 -- 存放可變長字符數據,最大長度為4000字符。

     

    目前没有本质的区别

    但是:
    varchar2是oracle提供的独特的数据类型
    oracle保证在任何版本中该数据类型向上和向下兼容
    但不保证varchar,这是因为varchar是标准sql提供的数据类型
    有可能随着sql标准的变化而改变

     

    2: varchar2
    VARCHAR2 Datatype
    The VARCHAR2 datatype specifies a variable-length character string. When you
    create a VARCHAR2 column, you supply the maximum number of bytes or
    characters of data that it can hold. Oracle subsequently stores each value in the column exactly as you specify it, provided the value does not exceed the column’s maximum length. If you try to insert a value that exceeds the specified length, then Oracle returns an error.
    You must specify a maximum length for a VARCHAR2 column. This maximum must
    be at least 1 byte.
    3: varchar
    VARCHAR Datatype
    The VARCHAR datatype is currently synonymous with the VARCHAR2 datatype.
    Oracle recommends that you use VARCHAR2 rather than VARCHAR. In the future,
    VARCHAR might be defined as a separate datatype used for variable-length character strings compared with different comparison semantics.

     

     

    char对于不够位数的用空格添补,varchar2不用。可以试着比较一下。

    ---------------------------

    varchar2和varchar的目前没有区别,不过ocacle以后的版本就不支持varchar类型,如果想新版本的数据库兼容就不要用varchar,如果想和其它数据库兼容就不要用varchar2

  • 相关阅读:
    委托事件
    委托使用(2)
    简单的文件流写读
    datalist 分页显示不用PagedDataSource对象
    委托使用(1)
    文件的路径问题
    委托揭秘
    一个简单的文件上传(没有数据库的)
    Quartz 2D 练习2多点触摸画圈
    插件框架精简版 x3py 已在Win/Mac/Linux下测试通过
  • 原文地址:https://www.cnblogs.com/zhangdongsheng/p/2040836.html
Copyright © 2011-2022 走看看