{"id":1422,"date":"2017-11-09T11:09:45","date_gmt":"2017-11-09T04:09:45","guid":{"rendered":"https:\/\/oracletutorial.com\/?page_id=1422"},"modified":"2025-05-24T04:09:00","modified_gmt":"2025-05-24T11:09:00","slug":"plsql-goto","status":"publish","type":"page","link":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/","title":{"rendered":"PL\/SQL GOTO Statement"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: this tutorial introduces you to PL\/SQL <code>GOTO<\/code> statement and discusses the restrictions of the <code>GOTO<\/code> statement.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='introduction-to-plsql-goto-statement'>Introduction to PL\/SQL GOTO statement <a href=\"#introduction-to-plsql-goto-statement\" class=\"anchor\" id=\"introduction-to-plsql-goto-statement\" title=\"Anchor for Introduction to PL\/SQL GOTO statement\">#<\/a><\/h2>\n\n\n\n<p>The <code>GOTO<\/code> statement allows you to transfer control to a labeled block or statement. <\/p>\n\n\n\n<p>Here&#8217;s the syntax of the <code>GOTO<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">GOTO label_name;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>In this syntax, the <code>label_name<\/code> is the name of a label that identifies the target statement. In the program, you surround the label name with double enclosing angle brackets as shown below:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">&lt;&lt;label_name&gt;&gt;;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>When PL\/SQL encounters a <code>GOTO<\/code> statement, it transfers control to the first executable statement after the label.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='plsql-goto-statement-example'>PL\/SQL GOTO statement example <a href=\"#plsql-goto-statement-example\" class=\"anchor\" id=\"plsql-goto-statement-example\" title=\"Anchor for PL\/SQL GOTO statement example\">#<\/a><\/h2>\n\n\n\n<p>The following shows an example of using the&nbsp;<code>GOTO<\/code> statements.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">SET<\/span> SERVEROUTPUT <span class=\"hljs-keyword\">ON<\/span>;\n\n<span class=\"hljs-keyword\">BEGIN<\/span>\n  <span class=\"hljs-keyword\">GOTO<\/span> second_message;\n\n  &lt;&lt;first_message&gt;&gt;\n  DBMS_OUTPUT.PUT_LINE( 'Hello' );\n  GOTO the_end;\n\n  &lt;&lt;second_message&gt;&gt;\n  DBMS_OUTPUT.PUT_LINE( 'PL\/SQL GOTO Demo' );\n  GOTO first_message;\n\n  &lt;&lt;the_end&gt;&gt;\n  DBMS_OUTPUT.PUT_LINE( 'and good bye...' );\n\n<span class=\"hljs-keyword\">END<\/span>;<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Output:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">PL\/SQL GOTO Demo\nHello\nand good Bye...\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>The following explains the sequence of the <a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-anonymous-block\/\">block<\/a> in detail:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>First, the <code>GOTO second_message<\/code> statement is encountered, therefore, the control is passed to the statement after the <code>second_message<\/code> label.<\/li>\n\n\n\n<li>Second, the <code>GOTO first_message<\/code> is encountered, so the control is transferred to the statement after the <code>first_message<\/code> label.<\/li>\n\n\n\n<li>Third, the <code>GOTO the_end<\/code> is reached, the control is passed to the statement after the <code>the_end<\/code> label.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id='goto-statement-restrictions'>GOTO statement restrictions <a href=\"#goto-statement-restrictions\" class=\"anchor\" id=\"goto-statement-restrictions\" title=\"Anchor for GOTO statement restrictions\">#<\/a><\/h2>\n\n\n\n<p>The <code>GOTO<\/code> statement is subject to the following restrictions.<\/p>\n\n\n\n<p>First, you cannot use a <code>GOTO<\/code> statement to transfer control into an <code><a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-if\/\">IF<\/a><\/code>, <code><a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-case-statement\/\">CASE<\/a><\/code> or <code><a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-loop\/\">LOOP<\/a><\/code> statement, the same for the sub-block.<\/p>\n\n\n\n<p>The following example attempts to transfer control into an <code>IF<\/code> statement using a <code>GOTO<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">DECLARE<\/span> \n  n_sales <span class=\"hljs-built_in\">NUMBER<\/span>;\n  n_tax NUMBER;\n<span class=\"hljs-keyword\">BEGIN<\/span> \n    <span class=\"hljs-keyword\">GOTO<\/span> inside_if_statement;\n    IF n_sales &gt; 0 THEN\n      &lt;&lt;inside_if_statement&gt;&gt;\n      n_tax  := n_sales * 0.1;\n    <span class=\"hljs-keyword\">END<\/span> <span class=\"hljs-keyword\">IF<\/span>;\n<span class=\"hljs-keyword\">END<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Oracle issued the following error:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">PLS-00375: illegal GOTO statement; this GOTO cannot branch to label 'INSIDE_IF_STATEMENT'<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Second, you cannot use a <code>GOTO<\/code> statement to transfer control from one clause to another in the <code>IF<\/code> statement e.g., from <code>IF<\/code> clause to <code>ELSIF<\/code> or <code>ELSE<\/code> clause, or from one <code>WHEN<\/code> clause to another in the <code>CASE<\/code> statement.<\/p>\n\n\n\n<p>The following example attempts to transfer control to a clause in the <code>IF<\/code> statement:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\"><span class=\"hljs-keyword\">DECLARE<\/span>\n  n_sales      <span class=\"hljs-built_in\">NUMBER<\/span>;\n  n_commission NUMBER;\n<span class=\"hljs-keyword\">BEGIN<\/span>\n  n_sales := <span class=\"hljs-number\">120000<\/span>;\n  IF n_sales      &gt; 100000 THEN\n    n_commission := 0.2;\n    GOTO zero_commission;\n  elsif n_sales   &gt; 50000 THEN\n    n_commission := 0.15;\n  elsif n_sales   &gt; 20000 THEN\n    n_commission := 0.1;\n  ELSE\n    &lt;&lt;zero_commission&gt;&gt;\n    n_commission := 0;\n  <span class=\"hljs-keyword\">END<\/span> <span class=\"hljs-keyword\">IF<\/span>;\n<span class=\"hljs-keyword\">END<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Oracle issued the following error.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"SQL (Structured Query Language)\" data-shcb-language-slug=\"sql\"><span><code class=\"hljs language-sql\">PLS-00375: illegal GOTO statement; this GOTO cannot branch to label 'ZERO_COMMISSION'<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">SQL (Structured Query Language)<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">sql<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Third, you cannot use a <code>GOTO<\/code> statement to transfer control out of a subprogram or into an <a href=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-exception\/\">exception handler<\/a>.<\/p>\n\n\n\n<p>Finally, you cannot use a <code>GOTO<\/code> statement to transfer control from an exception handler back into the current block.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id='summary'>Summary <a href=\"#summary\" class=\"anchor\" id=\"summary\" title=\"Anchor for Summary\">#<\/a><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the PL\/SQL <code>GOTO<\/code> statement to transfer control to a labeled block or statement.<\/li>\n<\/ul>\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=\"1422\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/\"\n\t\t\t\tdata-post-title=\"PL\/SQL GOTO Statement\"\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=\"1422\"\n\t\t\t\tdata-post-url=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/\"\n\t\t\t\tdata-post-title=\"PL\/SQL GOTO Statement\"\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 shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1418,"menu_order":8,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1422","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PL\/SQL GOTO Statement<\/title>\n<meta name=\"description\" content=\"This tutorial shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.\" \/>\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\/plsql-tutorial\/plsql-goto\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PL\/SQL GOTO Statement\" \/>\n<meta property=\"og:description\" content=\"This tutorial shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/\" \/>\n<meta property=\"og:site_name\" content=\"Oracle Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-24T11:09:00+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/plsql-goto\\\/\",\"url\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/plsql-goto\\\/\",\"name\":\"PL\\\/SQL GOTO Statement\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/#website\"},\"datePublished\":\"2017-11-09T04:09:45+00:00\",\"dateModified\":\"2025-05-24T11:09:00+00:00\",\"description\":\"This tutorial shows you how to use the PL\\\/SQL GOTO statement to transfer control to a labeled block or statement.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/plsql-goto\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/plsql-goto\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/plsql-goto\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PL\\\/SQL Tutorial\",\"item\":\"https:\\\/\\\/www.oracletutorial.com\\\/plsql-tutorial\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PL\\\/SQL GOTO Statement\"}]},{\"@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":"PL\/SQL GOTO Statement","description":"This tutorial shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.","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\/plsql-tutorial\/plsql-goto\/","og_locale":"en_US","og_type":"article","og_title":"PL\/SQL GOTO Statement","og_description":"This tutorial shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.","og_url":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/","og_site_name":"Oracle Tutorial","article_modified_time":"2025-05-24T11:09:00+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/","url":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/","name":"PL\/SQL GOTO Statement","isPartOf":{"@id":"https:\/\/www.oracletutorial.com\/#website"},"datePublished":"2017-11-09T04:09:45+00:00","dateModified":"2025-05-24T11:09:00+00:00","description":"This tutorial shows you how to use the PL\/SQL GOTO statement to transfer control to a labeled block or statement.","breadcrumb":{"@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/plsql-goto\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.oracletutorial.com\/"},{"@type":"ListItem","position":2,"name":"PL\/SQL Tutorial","item":"https:\/\/www.oracletutorial.com\/plsql-tutorial\/"},{"@type":"ListItem","position":3,"name":"PL\/SQL GOTO Statement"}]},{"@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\/1422","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=1422"}],"version-history":[{"count":0,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/1422\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/pages\/1418"}],"wp:attachment":[{"href":"https:\/\/www.oracletutorial.com\/wp-json\/wp\/v2\/media?parent=1422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}