{"id":1276,"date":"2017-11-02T13:15:07","date_gmt":"2017-11-02T06:15:07","guid":{"rendered":"https:\/\/oracletutorial.com\/?page_id=1276"},"modified":"2025-05-30T18:14:19","modified_gmt":"2025-05-31T01:14:19","slug":"oracle-data-types","status":"publish","type":"page","link":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/","title":{"rendered":"Oracle Data Types"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn about the overview of the built-in Oracle data types.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-oracle-data-types'>Introduction to Oracle data types <a href=\"#introduction-to-oracle-data-types\" class=\"anchor\" id=\"introduction-to-oracle-data-types\" title=\"Anchor for Introduction to Oracle data types\">#<\/a><\/h2>\n\n\n\n<p>In Oracle, every value has a data type that determines a set of characteristics. These characteristics instructs Oracle to handle the values of one data type differently from the values of another. <\/p>\n\n\n\n<p>For example, you can add values of the <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER<\/a> data type, but you can&#8217;t do the same with the RAW data type values.<\/p>\n\n\n\n<p>When <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-create-table\/\">creating a new table<\/a>, you specify a data type for each of its columns. Similarly, when you create a new procedure, you specify a data type for each of its arguments. <\/p>\n\n\n\n<p>The data type defines the allowed values that each column or argument can store. For example, a <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-date\/\">DATE<\/a> column cannot store a value of February 30, because this is not a valid date.<\/p>\n\n\n\n<p>Oracle has a number of built-in data types illustrated in the following table:<\/p>\n\n\n\n<figure class=\"wp-block-table responsive\"><table><thead><tr><th>Code<\/th><th>Data Type<\/th><\/tr><\/thead><tbody><tr><td>1<\/td><td>VARCHAR2(size&nbsp;[BYTE&nbsp;|&nbsp;CHAR])<\/td><\/tr><tr><td>1<\/td><td>NVARCHAR2(size)<\/td><\/tr><tr><td>2<\/td><td><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER[(precision&nbsp;[,&nbsp;scale]])<\/a><\/td><\/tr><tr><td>8<\/td><td>LONG<\/td><\/tr><tr><td>12<\/td><td>DATE<\/td><\/tr><tr><td>21<\/td><td>BINARY_FLOAT<\/td><\/tr><tr><td>22<\/td><td>BINARY_DOUBLE<\/td><\/tr><tr><td>23<\/td><td>RAW(size)<\/td><\/tr><tr><td>24<\/td><td>LONG RAW<\/td><\/tr><tr><td>69<\/td><td>ROWID<\/td><\/tr><tr><td>96<\/td><td>CHAR&nbsp;[(size&nbsp;[BYTE&nbsp;|&nbsp;CHAR])]<\/td><\/tr><tr><td>96<\/td><td>NCHAR[(size)]<\/td><\/tr><tr><td>112<\/td><td>CLOB<\/td><\/tr><tr><td>112<\/td><td>NCLOB<\/td><\/tr><tr><td>113<\/td><td>BLOB<\/td><\/tr><tr><td>114<\/td><td>BFILE<\/td><\/tr><tr><td>180<\/td><td>TIMESTAMP&nbsp;[(fractional_seconds)]<\/td><\/tr><tr><td>181<\/td><td>TIMESTAMP&nbsp;[(fractional_seconds)] WITH&nbsp;TIME&nbsp;ZONE<\/td><\/tr><tr><td>182<\/td><td>INTERVAL&nbsp;YEAR&nbsp;[(year_precision)]&nbsp;TO&nbsp;MONTH<\/td><\/tr><tr><td>183<\/td><td>INTERVAL&nbsp;DAY&nbsp;[(day_precision)]&nbsp;TO&nbsp;SECOND[(fractional_seconds)]<\/td><\/tr><tr><td>208<\/td><td>UROWID&nbsp;[(size)]<\/td><\/tr><tr><td>231<\/td><td>TIMESTAMP&nbsp;[(fractional_seconds)] WITH&nbsp;LOCAL&nbsp;TIMEZONE<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Each data type has a code managed internally by Oracle. To find the data type code of a value in a column, you use the <code><a href=\"https:\/\/www.oracletutorial.com\/oracle-string-functions\/oracle-dump\/\">DUMP()<\/a><\/code> function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='character-data-types'>Character data types <a href=\"#character-data-types\" class=\"anchor\" id=\"character-data-types\" title=\"Anchor for Character data types\">#<\/a><\/h2>\n\n\n\n<p>Character data types consist of <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-char\/\">CHAR<\/a>, <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-nchar\/\">NCHAR<\/a>, <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-varchar2\/\">VARCHAR2<\/a>, <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-nvarchar2\/\">NVARCHAR2<\/a>, and VARCHAR.<\/p>\n\n\n\n<p>The <code>NCHAR<\/code> and <code>NVARCHAR2<\/code> data types are for storing Unicode character strings.<\/p>\n\n\n\n<p>The fixed-length character data types are <code>CHAR<\/code>, <code>NCHAR<\/code> and the variable-length character data types are <code>VARCHAR2<\/code>, <code>NVARCHAR2<\/code>.<\/p>\n\n\n\n<p><code>VARCHAR<\/code> is the synonym of <code>VARCHAR2<\/code>. However, you should not use <code>VARCHAR<\/code> because Oracle may change its semantics in the future.<\/p>\n\n\n\n<p>For character data types, you can specify their sizes either in bytes or characters.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='number-data-type'>Number data type <a href=\"#number-data-type\" class=\"anchor\" id=\"number-data-type\" title=\"Anchor for Number data type\">#<\/a><\/h2>\n\n\n\n<p>The <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER<\/a> data type has precision <strong>p<\/strong> and scale <strong>s<\/strong>:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code class=\"hljs\">NUMBER(p, s)<\/code><\/span><\/pre>\n\n\n<p>The precision ranges from 1 to 38 while the scale range from -84 to 127.<\/p>\n\n\n\n<p>If you don&#8217;t specify the precision, the column can store values including fixed-point and floating-point numbers. The default value for the scale is zero.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='datetime-and-interval-data-types'>Datetime and Interval data types <a href=\"#datetime-and-interval-data-types\" class=\"anchor\" id=\"datetime-and-interval-data-types\" title=\"Anchor for Datetime and Interval data types\">#<\/a><\/h2>\n\n\n\n<p>Datetime data types are <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-date\/\">DATE<\/a>, <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-timestamp\/\">TIMESTAMP<\/a>, <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-timestamp-with-time-zone\/\">TIMESTAMP WITH TIME ZONE<\/a>, and TIMESTAMP WITH LOCAL TIME ZONE. The values of a datetime data type are datetimes.<\/p>\n\n\n\n<p>The interval data types are <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-interval\/\">INTERVAL YEAR TO MONTH<\/a> and <a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-interval\/\">INTERVAL DAY TO SECOND<\/a>. The values of the interval data type are intervals.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='raw-and-long-raw-data-types'>RAW and LONG RAW data types <a href=\"#raw-and-long-raw-data-types\" class=\"anchor\" id=\"raw-and-long-raw-data-types\" title=\"Anchor for RAW and LONG RAW data types\">#<\/a><\/h2>\n\n\n\n<p>The RAW and LONG RAW data types are for storing binary data or byte strings e.g., the content of documents, sound files, and video files.<\/p>\n\n\n\n<p>The RAW data type can store up to 2000 bytes while the LONG RAW data type can store up to 2GB.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='bfile-datatype'>BFILE Datatype <a href=\"#bfile-datatype\" class=\"anchor\" id=\"bfile-datatype\" title=\"Anchor for BFILE Datatype\">#<\/a><\/h2>\n\n\n\n<p>BFILE data type stores a locator to a large binary file which located outside the database. The locator consists of the directory and file names.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='blob-datatype'>BLOB Datatype <a href=\"#blob-datatype\" class=\"anchor\" id=\"blob-datatype\" title=\"Anchor for BLOB Datatype\">#<\/a><\/h2>\n\n\n\n<p>BLOB stands for a binary large object. You use the BLOB data type to store binary objects with the maximum size of (4 gigabytes &#8211; 1) * (database block size).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='clob-datatype'>CLOB Datatype <a href=\"#clob-datatype\" class=\"anchor\" id=\"clob-datatype\" title=\"Anchor for CLOB Datatype\">#<\/a><\/h2>\n\n\n\n<p>CLOB stands for character large object. You use CLOB to store single-byte or multibyte characters with the maximum size is (4 gigabytes &#8211; 1) * (database block size).<\/p>\n\n\n\n<p>Note that CLOB supports both fixed-with and variable-with character sets.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='nclob-datatype'>NCLOB Datatype <a href=\"#nclob-datatype\" class=\"anchor\" id=\"nclob-datatype\" title=\"Anchor for NCLOB Datatype\">#<\/a><\/h2>\n\n\n\n<p>NCLOB is similar to CLOB except that it can store the Unicode characters.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='urowid-datatype'>UROWID Datatype <a href=\"#urowid-datatype\" class=\"anchor\" id=\"urowid-datatype\" title=\"Anchor for UROWID Datatype\">#<\/a><\/h2>\n\n\n\n<p>The UROWID is primarily for values returned by the ROWID pseudo-column. Its values are base 64 strings that represent the unique address of rows in a table.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='data-types-oracle-and-ansi'>Data Types: Oracle and ANSI <a href=\"#data-types-oracle-and-ansi\" class=\"anchor\" id=\"data-types-oracle-and-ansi\" title=\"Anchor for Data Types: Oracle and ANSI\">#<\/a><\/h2>\n\n\n\n<p>When you use ANSI data types for the column definitions, Oracle will convert them to their corresponding data types in Oracle based on the following mapping table:<\/p>\n\n\n\n<figure class=\"wp-block-table responsive\"><table><thead><tr><th>ANSI SQL Datatype<\/th><th>Oracle Data Type<\/th><\/tr><\/thead><tbody><tr><td>CHARACTER(n)<\/td><td rowspan=\"2\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-char\/\">CHAR(n)<\/a><\/td><\/tr><tr><td>CHAR(n)<\/td><\/tr><tr><td>CHARACTER VARYING(n)<\/td><td rowspan=\"2\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-varchar2\/\">VARCHAR2(n)<\/a><\/td><\/tr><tr><td>CHAR VARYING(n)<\/td><\/tr><tr><td>NATIONAL CHARACTER(n)<\/td><td rowspan=\"3\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-nchar\/\">NCHAR(n)<\/a><\/td><\/tr><tr><td>NATIONAL CHAR(n)<\/td><\/tr><tr><td>NCHAR(n)<\/td><\/tr><tr><td>NATIONAL CHARACTER VARYING(n)<\/td><td rowspan=\"3\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-nvarchar2\/\">NVARCHAR2(n)<\/a><\/td><\/tr><tr><td>NATIONAL CHAR VARYING(n)<\/td><\/tr><tr><td>NCHAR VARYING(n)<\/td><\/tr><tr><td>NUMERIC(p,s)<\/td><td rowspan=\"2\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER(p,s)<\/a><\/td><\/tr><tr><td>DECIMAL(p,s)<\/td><\/tr><tr><td>INTEGER<\/td><td rowspan=\"3\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER(38)<\/a><\/td><\/tr><tr><td>INT<\/td><\/tr><tr><td>SMALLINT<\/td><\/tr><tr><td>FLOAT<\/td><td rowspan=\"3\"><a href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-number-data-type\/\">NUMBER<\/a><\/td><\/tr><tr><td>DOUBLE PRECISION<\/td><\/tr><tr><td>REAL<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>In this tutorial, you have learned about the overview of built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE, and ROWID.<\/p>\n<div class=\"helpful-block-content\" data-title=\"\">\n\t<header>\n\t\t<div class=\"wth-question\">Was this tutorial helpful?<\/div>\n\t\t<div class=\"wth-thumbs\">\n\t\t\t<button\n\t\t\t\tdata-post=\"1276\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/\"\n\t\t\t\tdata-post-title=\"Oracle Data Types\"\n\t\t\t\tdata-response=\"1\"\n\t\t\t\tclass=\"wth-btn-rounded wth-yes-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t\tclass=\"feather feather-thumbs-up block w-full h-full\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> Yes <\/span>\n\t\t\t<\/button>\n\n\t\t\t<button\n\t\t\t\tdata-response=\"0\"\n\t\t\t\tdata-post=\"1276\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/\"\n\t\t\t\tdata-post-title=\"Oracle Data Types\"\n\t\t\t\tclass=\"wth-btn-rounded wth-no-btn\"\n\t\t\t>\n\t\t\t\t<svg\n\t\t\t\t\txmlns=\"http:\/\/www.w3.org\/2000\/svg\"\n\t\t\t\t\tviewBox=\"0 0 24 24\"\n\t\t\t\t\tfill=\"none\"\n\t\t\t\t\tstroke=\"currentColor\"\n\t\t\t\t\tstroke-width=\"2\"\n\t\t\t\t\tstroke-linecap=\"round\"\n\t\t\t\t\tstroke-linejoin=\"round\"\n\t\t\t\t>\n\t\t\t\t\t<path\n\t\t\t\t\t\td=\"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17\"\n\t\t\t\t\t><\/path>\n\t\t\t\t<\/svg>\n\t\t\t\t<span class=\"sr-only\"> No <\/span>\n\t\t\t<\/button>\n\t\t<\/div>\n\t<\/header>\n\n\t<div class=\"wth-form hidden\">\n\t\t<div class=\"wth-form-wrapper\">\n\t\t\t<div class=\"wth-title\"><\/div>\n\t\t\t\n\t\t\t<textarea class=\"wth-message\"><\/textarea>\n\n\t\t\t<button class=\"btn btn-primary wth-btn-submit\">Send<\/button>\n\t\t\t<button class=\"btn wth-btn-cancel\">Cancel<\/button>\n\t\t\n\t\t<\/div>\n\t<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":386,"menu_order":57,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1276","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle Data Types<\/title>\n<meta name=\"description\" content=\"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Data Types\" \/>\n<meta property=\"og:description\" content=\"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/\" \/>\n<meta property=\"og:site_name\" content=\"Oracle Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-31T01:14:19+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/oracle-data-types\\\/\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/oracle-data-types\\\/\",\"name\":\"Oracle Data Types\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\"},\"datePublished\":\"2017-11-02T06:15:07+00:00\",\"dateModified\":\"2025-05-31T01:14:19+00:00\",\"description\":\"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/oracle-data-types\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/oracle-data-types\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/oracle-data-types\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Basics\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/oracle-basics\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Oracle Data Types\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/\",\"name\":\"Oracle Tutorial\",\"description\":\"Oracle Tutorial\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.oracletutorial.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle Data Types","description":"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Data Types","og_description":"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.","og_url":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/","og_site_name":"Oracle Tutorial","article_modified_time":"2025-05-31T01:14:19+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/","url":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/","name":"Oracle Data Types","isPartOf":{"@id":"https:\/\/www.oracletutorial.com\/#website"},"datePublished":"2017-11-02T06:15:07+00:00","dateModified":"2025-05-31T01:14:19+00:00","description":"This tutorial introduces you to the built-in Oracle data types including Character, number, datetime, interval, BLOB, CLOB, BFILE and ROWID.","breadcrumb":{"@id":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.oracletutorial.com\/oracle-basics\/oracle-data-types\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.oracletutorial.com\/"},{"@type":"ListItem","position":2,"name":"Oracle Basics","item":"https:\/\/www.oracletutorial.com\/oracle-basics\/"},{"@type":"ListItem","position":3,"name":"Oracle Data Types"}]},{"@type":"WebSite","@id":"https:\/\/www.oracletutorial.com\/#website","url":"https:\/\/www.oracletutorial.com\/","name":"Oracle Tutorial","description":"Oracle Tutorial","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.oracletutorial.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/1276","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/comments?post=1276"}],"version-history":[{"count":0,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/1276\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/386"}],"wp:attachment":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/media?parent=1276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}