zoukankan      html  css  js  c++  java
  • powerDisgner 数据类型对比

    powerDisgner 16.5版本支持一下类型数据模型格式

    以下数字数据类型可用:

    Standard data typeDBMS-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)

    字符数据类型

    以下字符数据类型可用:

    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

                    

     时间数据类型
    以下时间数据类型可用:

    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

    其他数据类型
    可以使用以下其他数据类型:

    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.
  • 相关阅读:
    第三节 单因素方差分析
    第四十一节 ORM介绍和用元类实现
    第四十节 通过type创建复杂的类,元类应用
    第二节 检验方法使用条件考察
    HDFS HA误删namenode后报错Nameservice testCluster has no SecondaryNameNode or High-Availability partner的恢复
    spark sql cache时发现的空字符串问题
    centos7环境下ELK部署之elasticsearch
    CDH升级 5.7.5 --> 5.13.3(tar包方式)
    CDH部署(以5.7.5为例)
    人生苦短,Let's Go
  • 原文地址:https://www.cnblogs.com/ningwuyu/p/12066806.html
Copyright © 2011-2022 走看看