{"id":224,"date":"2019-10-06T10:50:11","date_gmt":"2019-10-06T03:50:11","guid":{"rendered":"https:\/\/mariadbtutorial.com\/?page_id=224"},"modified":"2020-04-11T23:24:10","modified_gmt":"2020-04-11T16:24:10","slug":"mariadb-distinct","status":"publish","type":"page","link":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/","title":{"rendered":"MariaDB Distinct"},"content":{"rendered":"\n<p><strong>Summary<\/strong>: in this tutorial, you will learn how to use the MariaDB <code>distinct<\/code> to select distinct rows from a table.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction to the MariaDB distinct option<\/h2>\n\n\n\n<p>A <code><a href=\"https:\/\/mariadbtutorial.com\/mariadb-basics\/mariadb-select\/\">select<\/a><\/code> statement may return some identical rows. To explicitly specify that you want to remove duplicate rows from the result set, you use the <code>distinct<\/code> option:<\/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\"><span class=\"hljs-keyword\">select<\/span> \n    <span class=\"hljs-keyword\">distinct<\/span> column_name\n<span class=\"hljs-keyword\">from<\/span> \n    table_name;\n<\/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>distinct<\/code> keyword appears after the <code>select<\/code> keyword and before columns or expressions of the select list.<\/p>\n\n\n\n<p>The query will return only distinct values from the <code>column_name<\/code> in the <code>table_name<\/code>.<\/p>\n\n\n\n<p>The <code>distinct<\/code> option can also be applied to multiple columns as shown in the following statement:<\/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\"><span class=\"hljs-keyword\">select<\/span>\n    <span class=\"hljs-keyword\">distinct<\/span> column1, column2,...\n<span class=\"hljs-keyword\">from<\/span>\n    table_name;\n<\/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>In this case, the query will use the combinations of values in all the columns, which appear after the <code>distinct<\/code> option, to evaluate the distinction of rows.<\/p>\n\n\n\n<p>Note that if you want to select distinct values of some columns only, you use the <code>group by<\/code> clause.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">MariaDB distinct examples<\/h2>\n\n\n\n<p>We&#8217;ll use the <code>country_stats<\/code> table from the <code>nation<\/code> <a href=\"https:\/\/mariadbtutorial.com\/getting-started\/mariadb-sample-database\/\">sample database<\/a> for demonstration:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"144\" height=\"124\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png\" alt=\"country_stats\" class=\"wp-image-107\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">A) Using the MariaDB distinct with one column<\/h3>\n\n\n\n<p>The values in the <code>year<\/code> column repeats for each country.<\/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\">select<\/span> \n    <span class=\"hljs-keyword\">year<\/span>\n<span class=\"hljs-keyword\">from<\/span> \n    country_stats\n<span class=\"hljs-keyword\">order<\/span> <span class=\"hljs-keyword\">by<\/span> \n    <span class=\"hljs-keyword\">year<\/span>;\n<\/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>The following statement uses the <code>distinct<\/code> option to select the distinct years from the the <code>year<\/code> column:<\/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\"><span class=\"hljs-keyword\">select<\/span> \n    <span class=\"hljs-keyword\">distinct<\/span> <span class=\"hljs-keyword\">year<\/span> \n<span class=\"hljs-keyword\">from<\/span> \n    country_stats\n<span class=\"hljs-keyword\">order<\/span> <span class=\"hljs-keyword\">by<\/span>   \n    <span class=\"hljs-keyword\">year<\/span> <span class=\"hljs-keyword\">desc<\/span>;\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<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"61\" height=\"253\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Distinct-with-one-column.png\" alt=\"\" class=\"wp-image-225\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">MariaDB distinct with null<\/h2>\n\n\n\n<p>In MariaDB, the <code>distinct<\/code> option treats <code>null<\/code> values the same. In other words, if you use the <code>select distinct<\/code> to query data from a column that has <code>null<\/code> values, the <code>distinct<\/code> option will keep only one <code>null<\/code> value.<\/p>\n\n\n\n<p>See the <code>countries<\/code> table from the <a href=\"https:\/\/mariadbtutorial.com\/getting-started\/mariadb-sample-database\/\">sample database<\/a>:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"144\" height=\"184\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/countries.png\" alt=\"\" class=\"wp-image-144\"\/><\/figure>\n\n\n\n<p>The following statement uses the <code>distinct<\/code> option to select unique national days:<\/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\">select<\/span> \n    <span class=\"hljs-keyword\">distinct<\/span> national_day\n<span class=\"hljs-keyword\">from<\/span> \n    countries;\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<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"92\" height=\"273\" src=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/MariaDB-Distinct-with-Nulls.png\" alt=\"MariaDB Distinct with Nulls\" class=\"wp-image-226\"\/><\/figure>\n\n\n\n<p>Even though, many rows have <code>null<\/code> values in the <code>national_day<\/code> column, the distinct option keeps only one value.<\/p>\n\n\n\n<p>In this tutorial, you will learn how to use the MariaDB <code>distinct<\/code> to select distinct rows from a table.<\/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=\"224\"\n\t\t\t\tdata-post-url=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\"\n\t\t\t\tdata-post-title=\"MariaDB Distinct\"\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=\"224\"\n\t\t\t\tdata-post-url=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\"\n\t\t\t\tdata-post-title=\"MariaDB Distinct\"\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>In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":95,"menu_order":3,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-224","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MariaDB Distinct<\/title>\n<meta name=\"description\" content=\"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.\" \/>\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.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MariaDB Distinct\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\" \/>\n<meta property=\"og:site_name\" content=\"MariaDB Tutorial\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-11T16:24:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png\" \/>\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.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\",\"url\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\",\"name\":\"MariaDB Distinct\",\"isPartOf\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png\",\"datePublished\":\"2019-10-06T03:50:11+00:00\",\"dateModified\":\"2020-04-11T16:24:10+00:00\",\"description\":\"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage\",\"url\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png\",\"contentUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mariadbtutorial.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MariaDB Basics\",\"item\":\"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"MariaDB Distinct\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#website\",\"url\":\"https:\/\/www.mariadbtutorial.com\/\",\"name\":\"MariaDB Tutorial\",\"description\":\"MariaDB Tutorial\",\"publisher\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mariadbtutorial.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#organization\",\"name\":\"MariaDB Tutorial\",\"url\":\"https:\/\/www.mariadbtutorial.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png\",\"contentUrl\":\"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png\",\"width\":512,\"height\":592,\"caption\":\"MariaDB Tutorial\"},\"image\":{\"@id\":\"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MariaDB Distinct","description":"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.","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.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/","og_locale":"en_US","og_type":"article","og_title":"MariaDB Distinct","og_description":"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.","og_url":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/","og_site_name":"MariaDB Tutorial","article_modified_time":"2020-04-11T16:24:10+00:00","og_image":[{"url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/","url":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/","name":"MariaDB Distinct","isPartOf":{"@id":"https:\/\/www.mariadbtutorial.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage"},"image":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage"},"thumbnailUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png","datePublished":"2019-10-06T03:50:11+00:00","dateModified":"2020-04-11T16:24:10+00:00","description":"In this tutorial, you will learn how to use the MariaDB distinct to select distinct rows from a table.","breadcrumb":{"@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#primaryimage","url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png","contentUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/10\/country_stats.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/mariadb-distinct\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mariadbtutorial.com\/"},{"@type":"ListItem","position":2,"name":"MariaDB Basics","item":"https:\/\/www.mariadbtutorial.com\/mariadb-basics\/"},{"@type":"ListItem","position":3,"name":"MariaDB Distinct"}]},{"@type":"WebSite","@id":"https:\/\/www.mariadbtutorial.com\/#website","url":"https:\/\/www.mariadbtutorial.com\/","name":"MariaDB Tutorial","description":"MariaDB Tutorial","publisher":{"@id":"https:\/\/www.mariadbtutorial.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mariadbtutorial.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mariadbtutorial.com\/#organization","name":"MariaDB Tutorial","url":"https:\/\/www.mariadbtutorial.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/","url":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png","contentUrl":"https:\/\/mariadbtutorial.com\/wp-content\/uploads\/2019\/06\/favicon.png","width":512,"height":592,"caption":"MariaDB Tutorial"},"image":{"@id":"https:\/\/www.mariadbtutorial.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/224","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/comments?post=224"}],"version-history":[{"count":1,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/224\/revisions"}],"predecessor-version":[{"id":759,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/224\/revisions\/759"}],"up":[{"embeddable":true,"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/pages\/95"}],"wp:attachment":[{"href":"https:\/\/www.mariadbtutorial.com\/wp-json\/wp\/v2\/media?parent=224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}