{"id":131,"date":"2007-12-10T02:01:40","date_gmt":"2007-12-10T02:01:40","guid":{"rendered":"http:\/\/apollo89.com\/wordpress\/?p=131"},"modified":"2013-02-21T12:16:39","modified_gmt":"2013-02-21T03:16:39","slug":"oracle-rank-over","status":"publish","type":"post","link":"https:\/\/apollo89.com\/wordpress\/?p=131","title":{"rendered":"[Oracle] RANK() OVER"},"content":{"rendered":"<p>&nbsp;<\/p>\n<p>\uc624\ub77c\ud074\uc5d0\uc11c\ub294 RANK Function\uc744 \uc0ac\uc6a9\ud574\uc11c \uc21c\uc704\ub97c \uac04\ud3b8\ud558\uac8c \ubd80\uc5ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p>RANK Function\ub294 oracle 8i(8.1.6) \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4.<br \/>\n8.1.6 \uc774\uc804 \ubc84\uc804\uc5d0\uc11c\ub294 \uc0ac\uc6a9 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ORA-923 error \uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4.<\/p>\n<p>plsql \ub0b4\uc5d0\uc11c\ub294 oracle 9i \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4.  8.1.6\uc5d0\uc11c\ub294 ORA-900 error\uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4.<\/p>\n<pre class=\"lang:tsql decode:true \" >-- scott\uc720\uc800\ub85c \uc811\uc18d\uc744 \ud569\ub2c8\ub2e4. \r\n]$ SQLPLUS scott\/tiger\r\n\r\n-- RANK() \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae09\uc5ec \uc21c\uc73c\ub85c \uc21c\uc704\ub97c \ubd80\uc5ec\ud55c \uc608\uc81c \uc785\ub2c8\ub2e4.  \r\n-- RK\uc758 \ucd9c\ub825\uac12\uc744 \ubcf4\uba74 \uae09\uc5ec\uac00 \uac19\uc73c\uba74 \uac19\uc740 \uc21c\uc704\ub85c \ubd80\uc5ec\uac00 \ub429\ub2c8\ub2e4. \r\nSQL&gt; SELECT empno, ename, sal, \r\n        RANK() OVER (ORDER BY sal DESC ) as rk\r\n        FROM emp;\r\n\r\n    EMPNO ENAME             SAL         RK\r\n--------- ---------- ---------- ----------\r\n     7839 KING             5000          1\r\n     7788 SCOTT            3000          2\r\n     7902 FORD             3000          2\r\n     7566 JONES            2975          4\r\n     7698 BLAKE            2850          5\r\n     7782 CLARK            2450          6\r\n     7499 ALLEN            1600          7\r\n     7844 TURNER           1500          8\r\n     7934 MILLER           1300          9\r\n     7521 WARD             1250         10\r\n     7654 MARTIN           1250         10\r\n     7876 ADAMS            1100         12\r\n     7900 JAMES             950         13\r\n     7369 SMITH             800         14<\/pre>\n<p>\uadf8\ub8f9\ubcc4\ub85c \uc21c\uc704\ub97c \ubd80\uc5ec \ud558\ub294 \ubc95<br \/>\n\uc704 \uc608\uc81c\ub294 deptno\ub97c \ud30c\ud2f0\uc158\uc73c\ub85c \ub098\ub204\uc5b4\uc11c \ubd80\uc11c\ubcc4\ub85c \uc21c\uc704\ub97c \ubd80\uc5ec \ud569\ub2c8\ub2e4.<br \/>\n\ud2b9\uc815\ud55c \uadf8\ub8f9\ubcc4\ub85c \uc21c\uc704\ub97c \ubd80\uc5ec\ud558\uace0 \uc2f6\uc744\ub54c \uc0ac\uc6a9 \ud558\uba74 \ud3b8\ud569\ub2c8\ub2e4. <\/p>\n<pre class=\"lang:tsql decode:true \" >SQL&gt; SELECT deptno, ename, sal, \r\n       RANK() OVER (PARTITION BY deptno ORDER BY sal DESC ) as rk \r\n       FROM emp ;\r\n \r\n DEPTNO ENAME             SAL        RK\r\n------- ---------- ---------- ---------\r\n     10 KING             5000         1\r\n     10 CLARK            2450         2\r\n     10 MILLER           1300         3\r\n     20 SCOTT            3000         1\r\n     20 FORD             3000         1\r\n     20 JONES            2975         3\r\n     20 ADAMS            1100         4\r\n     20 SMITH             800         5\r\n     30 BLAKE            2850         1\r\n     30 ALLEN            1600         2\r\n     30 TURNER           1500         3\r\n     30 WARD             1250         4\r\n     30 MARTIN           1250         4\r\n     30 JAMES             950         6<\/pre>\n<p>DENSE_RANK() \ud568\uc218<\/p>\n<p>DENSE_RANK() &#8211; \uc911\ubcf5 RANK\uc758 \uc218\uc640 \ubb34\uad00\ud558\uac8c numbering\uc744 \ud569\ub2c8\ub2e4.<br \/>\n1\ub4f1, 2\ub4f1, 2\ub4f1 \uc774\ub807\uac8c 2\ub4f1\uc774 \uc911\ubcf5\ub418\uc5c8\ub294\ub370 4\ub4f1\uc774 \uc544\ub2c8\ub77c 3\ub4f1\uc774 \ubd80\uc5ec \ub429\ub2c8\ub2e4. <\/p>\n<pre class=\"lang:tsql decode:true \" >SQL&gt;SELECT empno, ename, sal,  \r\n       DENSE_RANK() OVER (ORDER BY sal DESC ) as rk\r\n       FROM emp;     \r\n    \r\n    EMPNO ENAME             SAL        RK\r\n--------- ---------- ---------- ---------\r\n     7839 KING             5000         1\r\n     7788 SCOTT            3000         2\r\n     7902 FORD             3000         2\r\n     7566 JONES            2975         3\r\n     7698 BLAKE            2850         4\r\n     7782 CLARK            2450         5\r\n     7499 ALLEN            1600         6\r\n     7844 TURNER           1500         7\r\n     7934 MILLER           1300         8\r\n     7521 WARD             1250         9\r\n     7654 MARTIN           1250         9\r\n     7876 ADAMS            1100        10\r\n     7900 JAMES             950        11\r\n     7369 SMITH             800        12  <\/pre>\n<p>OVER analytic_clause<br \/>\n\ud574\ub2f9 \ud568\uc218\uac00 \ucffc\ub9ac \uacb0\uacfc \uc9d1\ud569\uc5d0 \ub300\ud574 \uc801\uc6a9\ub418\ub77c\ub294 \uc9c0\uc2dc\uc5b4\ub85c\uc368 FROM, WHERE, GROUP BY\uc640 HAVING\uad6c \uc774\ud6c4\uc5d0 \uacc4\uc0b0\ub418\uc5b4 \uc9c4\ub2e4.<br \/>\nSELECT \uad6c \ub610\ub294 ORDER BY \uad6c\uc5d0 Analytic Function\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub2e4.<\/p>\n<p>&#8211; PARTITION BY \uad6c<br \/>\n\ud558\ub098 \uc774\uc0c1\uc758 \uceec\ub7fc \ub610\ub294 \uc801\ud569\ud55c \ud45c\ud604\uc2dd\uc774 \uc0ac\uc6a9\ub420 \uc218 \uc788\uace0 \ud558\ub098 \uc774\uc0c1\uc758 \uceec\ub7fc \ub610\ub294 \ud45c\ud604\uc2dd\uc5d0 \uc758\ud55c \uadf8\ub8f9\uc73c\ub85c \ucffc\ub9ac\uc758 \uacb0\uacfc\ub97c \ud30c\ud2f0\uc158\ud55c\ub2e4. \uc774 \uad6c\uac00 \uc0dd\ub7b5\ub418\uba74 \ub2e8\uc77c \uadf8\ub8f9\ucc98\ub7fc \ucffc\ub9ac \uacb0\uacfc \uc9d1\ud569\uc774 \ucc98\ub9ac\ub41c\ub2e4.<\/p>\n<p>&#8211; ORDER BY \uad6c<br \/>\n\ud558\ub098 \uc774\uc0c1\uc758 \uceec\ub7fc \ub610\ub294 \uc801\ud569\ud55c \ud45c\ud604\uc2dd\uc774 \uc0ac\uc6a9\ub420 \uc218 \uc788\uace0 \ud558\ub098 \uc774\uc0c1\uc758 \uceec\ub7fc \ub610\ub294 \ud45c\ud604\uc2dd\uc744 \uae30\uc900\uc73c\ub85c \ud30c\ud2f0\uc158 \ub0b4\uc758 \ub370\uc774\ud130\ub97c \uc815\ub82c\ud55c\ub2e4. \ud45c\ud604\uc2dd\uc740 \uceec\ub7fc\uc758 \ubcc4\uce6d \ub610\ub294 \uc704\uce58\ub97c \ub098\ud0c0\ub0b4\ub294 \uc22b\uc790\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\ub2e4.<\/p>\n<p>\ubd80\uc11c\ubcc4 \uc9c1\uc5c5\ubcc4 \uae09\uc5ec \ud569\uacc4\uc640, \uc9c1\uc5c5\ubcc4 \uae09\uc5ec \ud569\uacc4\uac00 \uac00\uc7a5 \ud070 \uae08\uc561<\/p>\n<pre class=\"lang:tsql decode:true \" >SELECT deptno, job, SUM(SAL) sum_sal,\r\nMAX(SUM(sal)) OVER (PARTITION BY deptno)\r\nFROM emp\r\nGROUP BY deptno, job\r\n<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; \uc624\ub77c\ud074\uc5d0\uc11c\ub294 RANK Function\uc744 \uc0ac\uc6a9\ud574\uc11c \uc21c\uc704\ub97c \uac04\ud3b8\ud558\uac8c \ubd80\uc5ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. RANK Function\ub294 oracle 8i(8.1.6) \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6 \uc774\uc804 \ubc84\uc804\uc5d0\uc11c\ub294 \uc0ac\uc6a9 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ORA-923 error \uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. plsql \ub0b4\uc5d0\uc11c\ub294 oracle 9i \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6\uc5d0\uc11c\ub294 ORA-900 error\uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. &#8212; &hellip; <a href=\"https:\/\/apollo89.com\/wordpress\/?p=131\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[685],"tags":[187,162,998,188,997,189,996,63],"class_list":["post-131","post","type-post","status-publish","format-standard","hentry","category-database-","tag-dense_rank","tag-function","tag-order-by","tag-partition","tag-partition-by","tag-rank","tag-rank-over","tag-oracle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Oracle] RANK() OVER - Apollo89.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/apollo89.com\/wordpress\/?p=131\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Oracle] RANK() OVER - Apollo89.com\" \/>\n<meta property=\"og:description\" content=\"&nbsp; \uc624\ub77c\ud074\uc5d0\uc11c\ub294 RANK Function\uc744 \uc0ac\uc6a9\ud574\uc11c \uc21c\uc704\ub97c \uac04\ud3b8\ud558\uac8c \ubd80\uc5ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. RANK Function\ub294 oracle 8i(8.1.6) \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6 \uc774\uc804 \ubc84\uc804\uc5d0\uc11c\ub294 \uc0ac\uc6a9 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ORA-923 error \uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. plsql \ub0b4\uc5d0\uc11c\ub294 oracle 9i \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6\uc5d0\uc11c\ub294 ORA-900 error\uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. -- &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/apollo89.com\/wordpress\/?p=131\" \/>\n<meta property=\"og:site_name\" content=\"Apollo89.com\" \/>\n<meta property=\"article:published_time\" content=\"2007-12-10T02:01:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-02-21T03:16:39+00:00\" \/>\n<meta name=\"author\" content=\"apollo89\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"apollo89\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131\"},\"author\":{\"name\":\"apollo89\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"headline\":\"[Oracle] RANK() OVER\",\"datePublished\":\"2007-12-10T02:01:40+00:00\",\"dateModified\":\"2013-02-21T03:16:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131\"},\"wordCount\":45,\"commentCount\":0,\"keywords\":[\"DENSE_RANK\",\"Function\",\"ORDER BY\",\"partition\",\"PARTITION BY\",\"rank\",\"RANK() OVER\",\"\uc624\ub77c\ud074\"],\"articleSection\":[\"Database\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131\",\"name\":\"[Oracle] RANK() OVER - Apollo89.com\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\"},\"datePublished\":\"2007-12-10T02:01:40+00:00\",\"dateModified\":\"2013-02-21T03:16:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?p=131#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/apollo89.com\\\/wordpress\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Oracle] RANK() OVER\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/\",\"name\":\"Apollo89.com\",\"description\":\"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/#\\\/schema\\\/person\\\/93f56825cac3b2f18e5f107995066c82\",\"name\":\"apollo89\",\"description\":\"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.\",\"url\":\"https:\\\/\\\/apollo89.com\\\/wordpress\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Oracle] RANK() OVER - Apollo89.com","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:\/\/apollo89.com\/wordpress\/?p=131","og_locale":"ko_KR","og_type":"article","og_title":"[Oracle] RANK() OVER - Apollo89.com","og_description":"&nbsp; \uc624\ub77c\ud074\uc5d0\uc11c\ub294 RANK Function\uc744 \uc0ac\uc6a9\ud574\uc11c \uc21c\uc704\ub97c \uac04\ud3b8\ud558\uac8c \ubd80\uc5ec\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. RANK Function\ub294 oracle 8i(8.1.6) \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6 \uc774\uc804 \ubc84\uc804\uc5d0\uc11c\ub294 \uc0ac\uc6a9 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ORA-923 error \uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. plsql \ub0b4\uc5d0\uc11c\ub294 oracle 9i \ubd80\ud130 \uac00\ub2a5\ud569\ub2c8\ub2e4. 8.1.6\uc5d0\uc11c\ub294 ORA-900 error\uac00 \ubc1c\uc0dd \ud569\ub2c8\ub2e4. -- &hellip; Continue reading &rarr;","og_url":"https:\/\/apollo89.com\/wordpress\/?p=131","og_site_name":"Apollo89.com","article_published_time":"2007-12-10T02:01:40+00:00","article_modified_time":"2013-02-21T03:16:39+00:00","author":"apollo89","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"apollo89","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/apollo89.com\/wordpress\/?p=131#article","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=131"},"author":{"name":"apollo89","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"headline":"[Oracle] RANK() OVER","datePublished":"2007-12-10T02:01:40+00:00","dateModified":"2013-02-21T03:16:39+00:00","mainEntityOfPage":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=131"},"wordCount":45,"commentCount":0,"keywords":["DENSE_RANK","Function","ORDER BY","partition","PARTITION BY","rank","RANK() OVER","\uc624\ub77c\ud074"],"articleSection":["Database"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/apollo89.com\/wordpress\/?p=131#respond"]}]},{"@type":"WebPage","@id":"https:\/\/apollo89.com\/wordpress\/?p=131","url":"https:\/\/apollo89.com\/wordpress\/?p=131","name":"[Oracle] RANK() OVER - Apollo89.com","isPartOf":{"@id":"https:\/\/apollo89.com\/wordpress\/#website"},"datePublished":"2007-12-10T02:01:40+00:00","dateModified":"2013-02-21T03:16:39+00:00","author":{"@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82"},"breadcrumb":{"@id":"https:\/\/apollo89.com\/wordpress\/?p=131#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/apollo89.com\/wordpress\/?p=131"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/apollo89.com\/wordpress\/?p=131#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/apollo89.com\/wordpress"},{"@type":"ListItem","position":2,"name":"[Oracle] RANK() OVER"}]},{"@type":"WebSite","@id":"https:\/\/apollo89.com\/wordpress\/#website","url":"https:\/\/apollo89.com\/wordpress\/","name":"Apollo89.com","description":"\uc544\ud3f4\ub85c\uc528\uc758 \uc7a1\ub2e4\ud55c \uacbd\ud5d8\ub4e4..","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/apollo89.com\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/apollo89.com\/wordpress\/#\/schema\/person\/93f56825cac3b2f18e5f107995066c82","name":"apollo89","description":"\uc544\ud3f4\ub85c89 \uc785\ub2c8\ub2e4.","url":"https:\/\/apollo89.com\/wordpress\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/131","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=131"}],"version-history":[{"count":0,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/131\/revisions"}],"wp:attachment":[{"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=131"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=131"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/apollo89.com\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=131"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}