Oracle

Data Type

Figo Kim 2006. 9. 2. 18:11
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
  • VARCHAR2(size) : Variable-length character data
    size : minimum 1 and maximum 4000
  • CHAR(size) : Fixed-length character data
    size : minimum 1 and maximum 2000 (slowest data type)
  • NUMBER(p,s) : Variable-length numeric data
    p : precision , s: scale
    The precision is the total number of decimal digits, and the scale is the number of digits to the right fo the decimal point; the precision can range from 1 to 38, and the scale can range from -84 to 127
  • DATE : Data and time variable
  • LONG : Variable-length character data (up to 2GB)
  • CLOB : Character data (up to 4GB)
  • RAW and LONG RAW : Raw binary data
  • BLOB : Binary data (up to 4GB)
    Use for pictures (multimedia files)
  • BFILE : Binary data stored in an external file (up to 4GB)
  • ROWID : A based-64 number system representing the unique address of a row in its table

BFILE or BLOB usually save an address or pointer of a file.

'Oracle' 카테고리의 다른 글

Datetime Data Types (1)  (0) 2006.09.02
Datetime Data Types (1)  (0) 2006.09.02
Data Type  (0) 2006.09.02
CREATE TABLE statement  (0) 2006.09.02
CREATE TABLE statement  (0) 2006.09.02