Oracle Data Types.
Oracle supports various data types, and this page provides a compilation of commonly used data types in Oracle.
-
BFILE
OracleBFILE
data type is a special data type in the Oracle database used for handling binary file data. -
BINARY_DOUBLE
OracleBINARY_DOUBLE
is a data type used in Oracle databases to store double-precision floating-point numbers. -
BINARY_FLOAT
OracleBINARY_FLOAT
is a data type used in Oracle databases to store single-precision floating-point numbers. -
BLOB
OracleBLOB
is a binary large object data type used to store binary data such as images, audio, videos, etc. -
BOOLEAN
TheBOOLEAN
data type in Oracle is a logical type used to represent one of two values: true or false. -
CHAR
The OracleCHAR
data type is used to store fixed-length strings. -
CLOB
The OracleCLOB
data type is used to store large amounts of text data. -
DATE
In Oracle database,DATE
is a data type used to store date and time information. -
INTERVAL DAY TO SECOND
In Oracle databases, theINTERVAL DAY TO SECOND
data type is used to represent a time interval between two dates or times in days, hours, minutes, and seconds. -
INTERVAL YEAR TO MONTH
In Oracle database, theINTERVAL YEAR TO MONTH
data type is used to represent the time interval between two dates or times in years and months. -
Introduction to Oracle NULL Data Type
In Oracle database,NULL
is a special data type that represents a missing or unknown value. -
JSON
OracleJSON
data type can store and manipulate data inJSON
format -
NCHAR
In Oracle Database,NCHAR
is a character data type used to store fixed-length strings in the Unicode character set. -
NCLOB
In Oracle database, theNCLOB
data type is used to store large amounts of character data in Unicode character set, with a maximum length of 4GB. -
NESTED TABLE
OracleNESTED TABLE
data type is a type of nested table that can store another table within a table. -
NUMBER
TheNUMBER
data type is a fundamental data type in the Oracle database used to represent numerical data. -
NVARCHAR2
In Oracle database,NVARCHAR2
is a variable-length string data type that stores Unicode characters. -
OBJECT
In the Oracle database,OBJECT
is a composite data type that can be used to define a custom data type with multiple attributes. -
REF
OracleREF
data type is a user-defined reference data type. -
ROWID
In Oracle database, theROWID
data type is a special data type used to identify a row in a table. -
TIMESTAMP
The OracleTIMESTAMP
data type is a data type used for storing dates and times. -
TIMESTAMP WITH LOCAL TIME ZONE
OOracleTIMESTAMP WITH LOCAL TIME ZONE
is a data type for date and time information that includes time zone information. -
TIMESTAMP WITH TIME ZONE
In Oracle Database,TIMESTAMP WITH TIME ZONE
is a data type used to store date, time, and time zone information. -
UROWID
In Oracle,UROWID
is a special data type used to store unique row identifiers. -
VARCHAR2
In Oracle Database,VARCHAR2
is a data type used to store variable-length strings, with a maximum length of 4000 bytes. -
VARRAY TYPE
The OracleVARRAY
data type is a composite data type used for storing arrays of variable length. -
XMLTYPE
In Oracle Database,XMLTYPE
is a very useful data type that can be used to store and manipulate XML documents.