zoukankan      html  css  js  c++  java
  • PowerDesigner的数据类型

    用PowerDesigner 15 设计个数据库,每个字段的数据类型设计真是头大,根据字段意思看用哪个类型最合适还得仔细研究呀。贴几个数据类型表格收藏一下^_^

      

    Numeric data types



    Standard datatypeDBMS-specific physical data typeContentLength
    Integer int / INTEGER 32-bit integer
    Short Integer smallint / SMALLINT 16-bit integer
    Long Integer int / INTEGER 32-bit integer
    Byte tinyint / SMALLINT 256 values
    Number numeric / NUMBER Numbers with a fixed decimal point Fixed
    Decimal decimal / NUMBER Numbers with a fixed decimal point Fixed
    Float float / FLOAT 32-bit floating point numbers Fixed
    Short Float real / FLOAT Less than 32-bit point decimal number
    Long Float double precision / BINARY DOUBLE 64-bit floating point numbers
    Money money / NUMBER Numbers with a fixed decimal point Fixed
    Serial numeric / NUMBER Automatically incremented numbers Fixed
    Boolean bit / SMALLINT Two opposing values (true/false; yes/no; 1/0)

    Character data types 

    The following character data types are available:

     
    Standard data typeDBMS-specific physical data typeContentLength
    Characters char / CHAR Character strings Fixed
    Variable Characters varchar / VARCHAR2 Character strings Maximum
    Long Characters varchar / CLOB Character strings Maximum
    Long Var Characters text / CLOB Character strings Maximum
    Text text / CLOB Character strings Maximum
    Multibyte nchar / NCHAR Multibyte character strings Fixed
    Variable Multibyte nvarchar / NVARCHAR2 Multibyte character strings Maximum

    Time data types 
     
    Standard data typeDBMS-specific physical data typeContentLength
    Date date / DATE Day, month, year
    Time time / DATE Hour, minute, and second
    Date & Time datetime / DATE Date and time
    Timestamp timestamp / TIMESTAMP System date and time

    Other data types 

    The following other data types are available:

    Standard data typeDBMS-specific physical data typeContentLength
    Binary binary / RAW Binary strings Maximum
    Long Binary image / BLOB Binary strings Maximum
    Bitmap image / BLOB Images in bitmap format (BMP) Maximum
    Image image / BLOB Images Maximum
    OLE image / BLOB OLE links Maximum
    Other User-defined data type
    Undefined undefined Undefined. Replaced by the default data type at generation.
  • 相关阅读:
    5.4 省选模拟赛 修改 线段树优化dp 线段树上二分
    一本通 高手训练 1782 分层图 状压dp
    luogu P3830 [SHOI2012]随机树 期望 dp
    5.2 省选模拟赛 或许 线型基
    luogu P4562 [JXOI2018]游戏 组合数学
    一本通 高手训练 1781 死亡之树 状态压缩dp
    luogu P4726 【模板】多项式指数函数 多项式 exp 牛顿迭代 泰勒展开
    4.28 省选模拟赛 负环 倍增 矩阵乘法 dp
    HDU 1756 Cupid's Arrow 计算几何 判断一个点是否在多边形内
    一本通 高手训练 1763 简单树 可持久化线段树 树链刨分 标记永久化
  • 原文地址:https://www.cnblogs.com/ThinkWorld/p/3304975.html
Copyright © 2011-2022 走看看