CHARACTER
|
If length is less than or equal to 32768, converts to CHAR(length).
If length is greater than 32768, converts to CLOB.
|
VARCHAR
|
If length is less than or equal to 32768, converts to VARCHAR(length).
If length is greater than 32768, converts to CLOB.
|
LONG VARCHAR
| CLOB
|
DATE
| TIMESTAMP
|
TIME
| VARCHAR
|
TIMESTAMP
| TIMESTAMP
|
BLOB
| BLOB
|
SMALLINT
| SMALLINT
|
INTEGER
| INTEGER
|
BIGINT
| DECIMAL(19)
|
REAL
|
If length is less than or equal to 63, converts to REAL.
If length is greater than 63 but less than or equal to 126, converts to FLOAT(53).
If length is greater than 126, converts to FLOAT.
|
FLOAT
|
If length is less than or equal to 63, converts to REAL.
If length is greater than 63 but less than or equal to 126, converts to FLOAT(53).
If length is greater than 126, converts to FLOAT.
|
DOUBLE PRECISION
| DOUBLE PRECISION
|
DECIMAL
| DECIMAL
|