{"id":494,"date":"2020-02-23T20:14:58","date_gmt":"2020-02-23T07:14:58","guid":{"rendered":"https:\/\/blog.wiseowls.co.nz\/?p=494"},"modified":"2026-03-08T00:44:46","modified_gmt":"2026-03-07T11:44:46","slug":"splitting-strings-with-mysql","status":"publish","type":"post","link":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/","title":{"rendered":"Splitting strings with MySQL"},"content":{"rendered":"\n<p>Suppose we&#8217;ve got a string that we&#8217;d like to parse it into a table and run <strong>DISTINCT<\/strong> over.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">A613; A613; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A613;<\/code><\/pre>\n\n\n\n<p>MySQL would not automatically convert a string into a table and there&#8217;s no library function to do the job for us. But we can leverage&nbsp;a classic <strong>SUBSTRING_INDEX(SUBSTRING_INDEX(newString, &#8216;;&#8217;, N), &#8216;;&#8217;, -1)<\/strong>&nbsp;expression to extract&nbsp;<strong>N<\/strong>th item from the string:&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>N<\/td><td>SUBSTRING_INDEX(SUBSTRING_INDEX(newString, &#8216;;&#8217;, N), &#8216;;&#8217;, -1)<\/td><\/tr><tr><td>1<\/td><td>A613<\/td><\/tr><tr><td>2<\/td><td>A613<\/td><\/tr><tr><td>3<\/td><td>A095<\/td><\/tr><tr><td>&#8230;<\/td><td>&#8230;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Generating numeric sequence<\/h2>\n\n\n\n<p>For the <strong>SUBSTRING_INDEX<\/strong> trick to work we need to generate ourselves a long enough sequence of integers so we can cross join it onto our source string. Check out the folowing sequence generator:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">select (th*1000+h*100+t*10+u+1) x from\n(select 0 th union select 1 union select 2 union select 3 union select 4 union\nselect 5 union select 6 union select 7 union select 8 union select 9) A,\n(select 0 h union select 1 union select 2 union select 3 union select 4 union\nselect 5 union select 6 union select 7 union select 8 union select 9) B,\n(select 0 t union select 1 union select 2 union select 3 union select 4 union\nselect 5 union select 6 union select 7 union select 8 union select 9) C,\n(select 0 u union select 1 union select 2 union select 3 union select 4 union\nselect 5 union select 6 union select 7 union select 8 union select 9) D\norder by x;<\/code><\/pre>\n\n\n\n<p>yes, this particular example is limited to 10k items but it can be expanded upon. It will come down to knowing your data and ensuring you&#8217;ve got enough of these to feed to the splitter. Or <a href=\"https:\/\/dba.stackexchange.com\/a\/75839\/201328\">use alternatives<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Stopping enumeration<\/h2>\n\n\n\n<p>After we&#8217;ve got the sequence going we need to find a number of meaningful elements in the source string. We basically need to count the delimiters in our source string. Problem is, MySQL doesn&#8217;t have a built in function for that. Mathematics to the rescue though:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">SELECT  (\n            CHAR_LENGTH(val)\n            - CHAR_LENGTH( REPLACE ( val, \";\", \"\") ) \n        ) \/ CHAR_LENGTH(\";\")        \n   AS count    \nFROM \"source string\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Putting it together<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">SELECT distinct SUBSTRING_INDEX(SUBSTRING_INDEX(val, '; ', x), '; ', -1) FROM\n(\n  select (t*10+u+1) x, val from\n  (select 0 t union select 1 union select 2 union select 3 union select 4 union\n  select 5 union select 6 union select 7 union select 8 union select 9) A,\n  (select 0 u union select 1 union select 2 union select 3 union select 4 union\n  select 5 union select 6 union select 7 union select 8 union select 9) B\n\tCROSS JOIN (SELECT 'A613; A613; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A095; A613' as val\n               ) as seq\n\tORDER BY x\n) as raw_data\nWHERE x &lt;= (\n            CHAR_LENGTH(val)\n            - CHAR_LENGTH( REPLACE ( val, \";\", \"\") ) \n        ) \/ CHAR_LENGTH(\";\")        \n    <\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Suppose we&#8217;ve got a string that we&#8217;d like to parse it into a table and run DISTINCT over. MySQL would not automatically convert a string into a table and there&#8217;s no library function to do the job for us. But we can leverage&nbsp;a classic SUBSTRING_INDEX(SUBSTRING_INDEX(newString, &#8216;;&#8217;, N), &#8216;;&#8217;, -1)&nbsp;expression to extract&nbsp;Nth item from the string:&nbsp; &hellip; <a href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Splitting strings with MySQL&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":391,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[51],"tags":[40,59],"class_list":["post-494","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database","tag-mysql","tag-sql"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Splitting strings with MySQL - Timur and associates<\/title>\n<meta name=\"description\" content=\"MySQL has no STRING_SPLIT. Here&#039;s the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Splitting strings with MySQL - Timur and associates\" \/>\n<meta property=\"og:description\" content=\"MySQL has no STRING_SPLIT. Here&#039;s the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/\" \/>\n<meta property=\"og:site_name\" content=\"Timur and associates\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-23T07:14:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-07T11:44:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1980\" \/>\n\t<meta property=\"og:image:height\" content=\"801\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"timur\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TimurKh\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/\"},\"author\":{\"name\":\"timur\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"headline\":\"Splitting strings with MySQL\",\"datePublished\":\"2020-02-23T07:14:58+00:00\",\"dateModified\":\"2026-03-07T11:44:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/\"},\"wordCount\":213,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg\",\"keywords\":[\"mysql\",\"sql\"],\"articleSection\":[\"Database\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/\",\"name\":\"Splitting strings with MySQL - Timur and associates\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg\",\"datePublished\":\"2020-02-23T07:14:58+00:00\",\"dateModified\":\"2026-03-07T11:44:46+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\"},\"description\":\"MySQL has no STRING_SPLIT. Here's the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg\",\"width\":1980,\"height\":801},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/index.php\\\/2020\\\/02\\\/23\\\/splitting-strings-with-mysql\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Splitting strings with MySQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#website\",\"url\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/\",\"name\":\"Timur and associates\",\"description\":\"Notes of an IT contractor\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.wiseowls.co.nz\\\/#\\\/schema\\\/person\\\/34d0ed30d573b5bc317ea990bd2e0c59\",\"name\":\"timur\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg\",\"caption\":\"timur\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/TimurKh\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Splitting strings with MySQL - Timur and associates","description":"MySQL has no STRING_SPLIT. Here's the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.","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:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/","og_locale":"en_US","og_type":"article","og_title":"Splitting strings with MySQL - Timur and associates","og_description":"MySQL has no STRING_SPLIT. Here's the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.","og_url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/","og_site_name":"Timur and associates","article_published_time":"2020-02-23T07:14:58+00:00","article_modified_time":"2026-03-07T11:44:46+00:00","og_image":[{"width":1980,"height":801,"url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg","type":"image\/jpeg"}],"author":"timur","twitter_card":"summary_large_image","twitter_creator":"@TimurKh","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#article","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/"},"author":{"name":"timur","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"headline":"Splitting strings with MySQL","datePublished":"2020-02-23T07:14:58+00:00","dateModified":"2026-03-07T11:44:46+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/"},"wordCount":213,"commentCount":0,"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg","keywords":["mysql","sql"],"articleSection":["Database"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/","url":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/","name":"Splitting strings with MySQL - Timur and associates","isPartOf":{"@id":"https:\/\/blog.wiseowls.co.nz\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#primaryimage"},"image":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg","datePublished":"2020-02-23T07:14:58+00:00","dateModified":"2026-03-07T11:44:46+00:00","author":{"@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59"},"description":"MySQL has no STRING_SPLIT. Here's the classic SUBSTRING_INDEX trick with a generated number sequence to parse delimited strings.","breadcrumb":{"@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#primaryimage","url":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg","contentUrl":"https:\/\/blog.wiseowls.co.nz\/wp-content\/uploads\/2020\/02\/tobias-fischer-PkbZahEG2Ng-unsplash-scaled-e1582017537106.jpg","width":1980,"height":801},{"@type":"BreadcrumbList","@id":"https:\/\/blog.wiseowls.co.nz\/index.php\/2020\/02\/23\/splitting-strings-with-mysql\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.wiseowls.co.nz\/"},{"@type":"ListItem","position":2,"name":"Splitting strings with MySQL"}]},{"@type":"WebSite","@id":"https:\/\/blog.wiseowls.co.nz\/#website","url":"https:\/\/blog.wiseowls.co.nz\/","name":"Timur and associates","description":"Notes of an IT contractor","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.wiseowls.co.nz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blog.wiseowls.co.nz\/#\/schema\/person\/34d0ed30d573b5bc317ea990bd2e0c59","name":"timur","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","url":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/23d55e17d4f0990ee4d12bc6e5dcfb58a292934efd62a185756876379e780b16?s=96&r=pg","caption":"timur"},"sameAs":["https:\/\/x.com\/TimurKh"]}]}},"_links":{"self":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/494","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/comments?post=494"}],"version-history":[{"count":5,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/494\/revisions"}],"predecessor-version":[{"id":907,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/posts\/494\/revisions\/907"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media\/391"}],"wp:attachment":[{"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/media?parent=494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/categories?post=494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.wiseowls.co.nz\/index.php\/wp-json\/wp\/v2\/tags?post=494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}