{"id":17114,"date":"2020-10-11T12:23:49","date_gmt":"2020-10-11T12:23:49","guid":{"rendered":"https:\/\/dbtut.com\/?p=17114"},"modified":"2020-10-11T15:14:26","modified_gmt":"2020-10-11T15:14:26","slug":"oracle-pl-sql-operators","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/","title":{"rendered":"Oracle PL\/SQL Operators"},"content":{"rendered":"<p>This PL\/SQL Tutorial is about PL\/SQL Operators.<\/p>\n<p>Operators are special expressions that operate process between one or more values \u200b\u200bin programming languages.<\/p>\n<p>PL\/SQL has operators that allow to process various data.<\/p>\n<ul>\n<li>Arithmetic operators<\/li>\n<li>Relational operators<\/li>\n<li>Comparison operators<\/li>\n<li>Logical operators<\/li>\n<li>String operators<\/li>\n<\/ul>\n<h3>Arithmetic Operators in PL\/SQL<\/h3>\n<p>Arithmetic operators are operators that provide basic numerical operations such as addition, subtraction, multiplication and division on numbers.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nBEGIN\r\n    DBMS_OUTPUT.put_line( 10 + 10);\r\n    DBMS_OUTPUT.put_line( 10 - 7);\r\n    DBMS_OUTPUT.put_line( 10 * 7);\r\n    DBMS_OUTPUT.put_line( 10 \/ 7);\r\n    DBMS_OUTPUT.put_line( 10 ** 3); -- Exponentiation \r\nEND;<\/pre>\n<h3>Relational Operators in PL\/SQL<\/h3>\n<p>By comparing the two values, according to the operator result, it returns TRUE or FALSE.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n   v_number1 number (2) := 10;\r\n   v_number2 number (2) := 20;\r\nBEGIN\r\n\r\n   IF (v_number1 = v_number2) THEN\r\n      DBMS_OUTPUT.put_line('v_number1 and v_number2 equal.');\r\n   ELSE\r\n      DBMS_OUTPUT.put_line('v_number1 and v_number2 not equal');\r\n   END IF;\r\n   \r\n   IF (v_number1 &lt; v_number2) THEN\r\n      DBMS_OUTPUT.put_line('v_number2 bigger.');\r\n   ELSE\r\n      DBMS_OUTPUT.put_line('v_number1 bigger.');\r\n   END IF;\r\n\r\n   IF ( v_number1 &gt; v_number2 ) THEN\r\n      DBMS_OUTPUT.put_line('v_number1 bigger.');\r\n   ELSE\r\n      DBMS_OUTPUT.put_line('v_number2 bigger.');\r\n   END IF;\r\n\r\n   v_number1 := 3;\r\n   v_number2 := 7;\r\n   IF ( v_number1 &lt;= v_number2 ) THEN\r\n      DBMS_OUTPUT.put_line('v_number2 equal or bigger.');\r\n   END IF;\r\n   IF ( v_number1 &gt;= v_number2 ) THEN\r\n      DBMS_OUTPUT.put_line('v_number1 equal or bigger.');\r\n   END IF;\r\n\r\n   IF ( v_number1 &lt;&gt; v_number2 ) THEN\r\n      DBMS_OUTPUT.put_line('v_number1 and v_number2 not equal.');\r\n   ELSE\r\n      DBMS_OUTPUT.put_line('v_number1 and v_number2 equal.');\r\n   END IF;\r\nEND;<\/pre>\n<h3>Comparison Operators in PL\/SQL<\/h3>\n<p>Like Relational Operators, Comparison operators compares two values and returns TRUE or FALSE. You can see comparision operators as below.<\/p>\n<ul>\n<li>Like Operator in Oracle<\/li>\n<li>Between Operator in Oracle<\/li>\n<li>IN Operator in Oracle<\/li>\n<li>IS NULL Operator in Oracle<\/li>\n<\/ul>\n<h4>LIKE Operator in PL\/SQL<\/h4>\n<p>Like operator is used to search by the pattern.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_message VARCHAR2(100) := 'Hello I'm Yusuf SEZER';\r\nBEGIN\r\n    IF v_message LIKE '%Yusuf%' THEN\r\n        DBMS_OUTPUT.put_line('Value found.');\r\n    ELSE\r\n        DBMS_OUTPUT.put_line('No Value foun.');\r\n    END IF;\r\nEND;<\/pre>\n<h4>Between Operator in PL\/SQL<\/h4>\n<p>The Between Operator is used to query whether the specified value is within the specified range.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_age PLS_INTEGER := 75;\r\nBEGIN\r\n    IF (v_age BETWEEN 0 AND 5) THEN\r\n        DBMS_OUTPUT.put_line('Baby');\r\n    ELSIF (v_age BETWEEN 5 AND 12) THEN\r\n        DBMS_OUTPUT.put_line('Child');\r\n    ELSIF (v_age BETWEEN 12 AND 18) THEN\r\n        DBMS_OUTPUT.put_line('Young');\r\n    ELSE\r\n        DBMS_OUTPUT.put_line('Other');\r\n    END IF;\r\nEND;<\/pre>\n<h4>IN Operator in PL\/SQL<\/h4>\n<p>The IN Opearator is used to query whether the specified value is one of the specified values.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_message VARCHAR2(55) := 'mine';\r\nBEGIN\r\n    IF (v_message IN('This', 'girl', 'is', 'mine') ) THEN\r\n        DBMS_OUTPUT.put_line('found.');\r\n    ELSE\r\n        DBMS_OUTPUT.put_line('not found.');\r\n    END IF;\r\nEND;<\/pre>\n<h4>IS NULL Operator in PL\/SQL<\/h4>\n<p>Used to check if the value is NULL.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_message VARCHAR2(55) := '';\r\nBEGIN\r\n    IF v_message IS NULL THEN\r\n        DBMS_OUTPUT.put_line('Mesagge is null.');\r\n    ELSE\r\n        DBMS_OUTPUT.put_line(v_message);\r\n    END IF;\r\nEND;<\/pre>\n<h3>Logical Operators in PL\/SQL<\/h3>\n<p>There are 3 logical operator in Oracle PL\/SQL. AND, OR,NOT.<\/p>\n<p><strong>AND Operator in PL\/SQL: <\/strong>It connects two operands each other(X AND Y). If both operands is true, then the result is true.<\/p>\n<p><strong>OR Operator in PL\/SQL: <\/strong>It connects two operands each other(X AND Y). If one of the operands is true, then the result is true.<\/p>\n<p><strong>NOT Operator in PL\/SQL: <\/strong>It reverse the result. If the result is true it returns false, and if the result is false, it returns true.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_result1 BOOLEAN := TRUE;\r\n    v_result2 BOOLEAN := FALSE;\r\nBEGIN\r\n    IF v_result1 AND v_result2 THEN\r\n        DBMS_OUTPUT.put_line('Both operands are true.');\r\n    ELSIF v_result1 OR v_result2 THEN\r\n        DBMS_OUTPUT.put_line('One of the operands is true.');\r\n    END IF;\r\n\r\n    IF NOT v_result2 THEN\r\n        DBMS_OUTPUT.put_line('v_result2 is FALSE.');\r\n    END IF;\r\nEND;<\/pre>\n<h3>String Operator || in PL\/SQL<\/h3>\n<p>PL \/ SQL || operator is used to concatenate string expressions.<\/p>\n<pre class=\"lang:default decode:true\">SET SERVEROUTPUT ON;\r\nDECLARE\r\n    v_name VARCHAR(40) := 'Yusuf';\r\n    v_surname VARCHAR(40) := 'SEZER';\r\nBEGIN\r\n    DBMS_OUTPUT.put_line('Merhaba ben ' || v_name || ' ' || v_surname);\r\nEND;<\/pre>\n<p>You can find more detailed information about below topics in the below link.<\/p>\n<p><strong><a href=\"https:\/\/dbtut.com\/index.php\/2020\/03\/19\/pl-sql-tutorial\/\" target=\"_blank\" rel=\"noopener noreferrer\">PL\/SQL Tutorial<\/a><\/strong><\/p>\n<p>You will find below topics in this article.<\/p>\n<ol>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/what-is-pl-sql\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>What is PL\/SQL<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-data-types-and-variables-and-literals\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Data Types and Variables and Literals<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Operators<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-conditional-statements\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Conditional Statements<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-loops\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Loops<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-procedures-and-procedure-parameters\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Procedures and Procedure Parameters<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-functions\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Functions<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-cursor\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Cursor<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-records\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Records<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-exception\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Exception<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-trigger\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Trigger<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-packages\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Packages<\/strong><\/a><\/li>\n<li><a href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-collections\/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Oracle PL\/SQL Collections<\/strong><\/a><\/li>\n<\/ol>\n<p>You can find more detailed information about operators at <a href=\"https:\/\/docs.oracle.com\/cd\/E12095_01\/doc.10303\/e12092\/sqopr.htm\" target=\"_blank\" rel=\"noopener noreferrer\">docs.oracle.com<\/a><\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_17114\" class=\"pvc_stats all  \" data-element-id=\"17114\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This PL\/SQL Tutorial is about PL\/SQL Operators. Operators are special expressions that operate process between one or more values \u200b\u200bin programming languages. PL\/SQL has operators that allow to process various data. Arithmetic operators Relational operators Comparison operators Logical operators String operators Arithmetic Operators in PL\/SQL Arithmetic operators are operators that provide basic numerical operations such &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_17114\" class=\"pvc_stats all  \" data-element-id=\"17114\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":485,"featured_media":17118,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[4],"tags":[9226,9222,9228,9230,9224,9232,9136,9240],"class_list":["post-17114","post","type-post","status-publish","format-standard","has-post-thumbnail","","category-oracle","tag-between-operator-in-pl-sql","tag-comparison-operators-in-pl-sql","tag-in-operator-in-pl-sql","tag-is-null-operator-in-pl-sql","tag-like-operator-in-pl-sql","tag-logical-operators-in-pl-sql","tag-pl-sql-operators","tag-string-operator-in-pl-sql"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Oracle PL\/SQL Operators - Database Tutorials<\/title>\n<meta name=\"description\" content=\"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle PL\/SQL Operators - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-11T12:23:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-11T15:14:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"837\" \/>\n\t<meta property=\"og:image:height\" content=\"516\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yusuf SEZER\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yusuf SEZER\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\"},\"author\":{\"name\":\"Yusuf SEZER\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\"},\"headline\":\"Oracle PL\/SQL Operators\",\"datePublished\":\"2020-10-11T12:23:49+00:00\",\"dateModified\":\"2020-10-11T15:14:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\"},\"wordCount\":407,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg\",\"keywords\":[\"Between Operator in PL\/SQL\",\"Comparison Operators in PL\/SQL\",\"IN Operator in PL\/SQL\",\"IS NULL Operator in PL\/SQL\",\"LIKE Operator in PL\/SQL\",\"Logical Operators in PL\/SQL\",\"pl\/sql operators\",\"String Operator || in PL\/SQL\"],\"articleSection\":[\"ORACLE\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\",\"name\":\"Oracle PL\/SQL Operators - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg\",\"datePublished\":\"2020-10-11T12:23:49+00:00\",\"dateModified\":\"2020-10-11T15:14:26+00:00\",\"description\":\"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg\",\"width\":837,\"height\":516},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle PL\/SQL Operators\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a\",\"name\":\"Yusuf SEZER\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g\",\"caption\":\"Yusuf SEZER\"},\"url\":\"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle PL\/SQL Operators - Database Tutorials","description":"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)","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:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/","og_locale":"en_US","og_type":"article","og_title":"Oracle PL\/SQL Operators - Database Tutorials","og_description":"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)","og_url":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/","og_site_name":"Database Tutorials","article_published_time":"2020-10-11T12:23:49+00:00","article_modified_time":"2020-10-11T15:14:26+00:00","og_image":[{"width":837,"height":516,"url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg","type":"image\/jpeg"}],"author":"Yusuf SEZER","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Yusuf SEZER","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/"},"author":{"name":"Yusuf SEZER","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a"},"headline":"Oracle PL\/SQL Operators","datePublished":"2020-10-11T12:23:49+00:00","dateModified":"2020-10-11T15:14:26+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/"},"wordCount":407,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg","keywords":["Between Operator in PL\/SQL","Comparison Operators in PL\/SQL","IN Operator in PL\/SQL","IS NULL Operator in PL\/SQL","LIKE Operator in PL\/SQL","Logical Operators in PL\/SQL","pl\/sql operators","String Operator || in PL\/SQL"],"articleSection":["ORACLE"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/","url":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/","name":"Oracle PL\/SQL Operators - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage"},"image":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage"},"thumbnailUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg","datePublished":"2020-10-11T12:23:49+00:00","dateModified":"2020-10-11T15:14:26+00:00","description":"This article contains information about PL\/SQL Operators(Arithmetic, Relational, Comparison, LIKE, Between ,IN, IS NULL,LOGICAL, STRING)","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#primaryimage","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2020\/10\/plsqloperatos.jpg","width":837,"height":516},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2020\/10\/11\/oracle-pl-sql-operators\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"Oracle PL\/SQL Operators"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/be8bf54494b6a89e626cbed2c940599a","name":"Yusuf SEZER","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19675b3db2d4ce370af047187123e2055a2b254ede3f0e7d9bc934da478146f7?s=96&d=mm&r=g","caption":"Yusuf SEZER"},"url":"https:\/\/dbtut.com\/index.php\/author\/yusufsezer\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/17114","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/485"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=17114"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/17114\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media\/17118"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=17114"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=17114"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=17114"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}