{"id":12376,"date":"2020-02-23T10:32:10","date_gmt":"2020-02-23T18:32:10","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12376"},"modified":"2023-12-01T02:29:41","modified_gmt":"2023-12-01T10:29:41","slug":"sql-distinct","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/sql-distinct\/","title":{"rendered":"SQL Distinct"},"content":{"rendered":"\n<p>When you\u2019re working with a database, there may be times when you want to get all of the unique values in a particular dataset. For example, you may want to get a list of the names of products you have sold in the past, or you may want to get a list of all the different categories of movies that exist in a movie database. <\/p>\n\n\n\n<p><code>SQL<\/code> has a built-in function that can help you retrieve this information: <code>DISTINCT<\/code>. The <code>DISTINCT<\/code> operator allows you to remove duplicate records so you can retrieve all of the unique combinations of values in a dataset.<\/p>\n\n\n\n<p>In this tutorial, we\u2019ll break down the basics of <code>DISTINCT<\/code> in <code>SQL<\/code>, and when you may use this operator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Query Refresher<\/h2>\n\n\n\n<p>To retrieve information from a database, you have to write a query. <code>SQL<\/code> queries almost always begin with the <code>SELECT<\/code> statement, and they specify what information you want to retrieve from a database. Here is the basic syntax for an <code>SQL<\/code> query:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT column_name FROM table_name WHERE your_query_conditions;<\/pre><\/div>\n\n\n\n<p>Let\u2019s use an example to illustrate queries in action. The following query will return the names and titles of all employees who work for our business: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name, title FROM employees;<\/pre><\/div>\n\n\n\n<p>Our code returns:<\/p>\n\n\n\n<figure class=\"wp-block-table course-info-table\"><table><tbody><tr><td>name&nbsp;<\/td><td>title<\/td><\/tr><tr><td>Luke<\/td><td>Sales Associate<\/td><\/tr><tr><td>Mike<\/td><td>Sales Associate<\/td><\/tr><tr><td>Hannah<\/td><td>Sales Associate<\/td><\/tr><tr><td>Geoff<\/td><td>Senior Sales Associate<\/td><\/tr><tr><td>Alexis<\/td><td>Sales Associate<\/td><\/tr><tr><td>Jonah<\/td><td>Vice President of Sales<\/td><\/tr><tr><td>Emma<\/td><td>Marketing Director<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>If you want to retrieve multiple columns, you can do so by separating the column names with a comma as we did above. Or if you want to get information from every column, you can use an asterisk (<code>*<\/code>), which represents all the columns in a table.<\/p>\n\n\n\n<p>When we\u2019re writing a query, we can use <code>WHERE<\/code> to filter records that meet a specific set of conditions. For example, if we want to get all the sales associates that work for our business, we could use the following query:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name, title FROM employees\nWHERE title = 'Sales Associate':<\/pre><\/div>\n\n\n\n<p>Our query returns the following:<\/p>\n\n\n\n<figure class=\"wp-block-table course-info-table\"><table><tbody><tr><td>name&nbsp;<\/td><td>title<\/td><\/tr><tr><td>Luke<\/td><td>Sales Associate<\/td><\/tr><tr><td>Mike<\/td><td>Sales Associate<\/td><\/tr><tr><td>Hannah<\/td><td>Sales Associate<\/td><\/tr><tr><td>Alexis<\/td><td>Sales Associate<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>(4 rows)<\/p>\n\n\n\n<p>Now we know the basics of queries, we can explore how to use <code>DISTINCT<\/code> in <code>SQL<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Distinct<\/h2>\n\n\n\n<p>When you\u2019re gathering data from a database, the result may contain duplicate rows or values. Let\u2019s say we want to get a list of all the titles held by our employees. If we were to use a standard <code>SELECT<\/code> query, we would get duplicate values. Here\u2019s an example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT title FROM employees;<\/pre><\/div>\n\n\n\n<p>Our query returns the following result: <\/p>\n\n\n\n<figure class=\"wp-block-table course-info-table\"><table><tbody><tr><td>title<\/td><\/tr><tr><td> Sales Associate&nbsp;<br> Sales Associate&nbsp;<br> Sales Associate&nbsp;<br> Senior Sales Associate&nbsp;<br> Sales Associate&nbsp;<br> Vice President of Sales&nbsp;<br> Marketing Director<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>(7 rows)<\/p>\n\n\n\n<p>As you can see, the title <code>Sales Associate<\/code> appears four times, because there are four employees who hold that title. But what if we only want to know what titles are in the database, rather than how many people have that title?<\/p>\n\n\n\n<p>That\u2019s where the <code>SQL DISTINCT<\/code> operator comes in. By using the <code>SQL DISTINCT<\/code> clause, we can remove all the duplicate data from a query.&nbsp;<\/p>\n\n\n\n<p>The <code>DISTINCT<\/code> keyword is used in conjunction with the <code>SELECT<\/code> operator. Here\u2019s an example of running the same query from above, but with the <code>DISTINCT<\/code> operator present:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT DISTINCT title FROM employees;<\/pre><\/div>\n\n\n\n<p>Our query returns the following:<\/p>\n\n\n\n<figure class=\"wp-block-table course-info-table\"><table><tbody><tr><td>title&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/td><\/tr><tr><td>Vice President of Sales<br>Sales Associate<br>Senior Sales Associate<br>Marketing Director<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>(4 rows)<\/p>\n\n\n\n<p>Our query returned a list of all the titles that employees hold. However, it didn&#8217;t repeat any titles held by more than one employee. We have no duplicate values in our output.<\/p>\n\n\n\n<p>The <code>DISTINCT<\/code> operator is particularly useful when you\u2019re working with large datasets. In our example above, we only have seven employees, but if we had five hundred, it would be difficult for us to see what titles people held without using the <code>DISTINCT<\/code> operator.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Now you know how to use the <code>DISTINCT<\/code> operator on an <code>SQL<\/code> server.<\/p>\n\n\n\n<p>As we have discussed, <code>SQL SELECT DISTINCT<\/code> allows you to fetch data from a table and remove any duplicate rows or values from the result. For example, if you want a list of all a company\u2019s branches, you could use <code>DISTINCT<\/code> to produce a list. <code>DISTINCT<\/code> is especially useful when you\u2019re working with larger datasets where duplicates may be distracting.<\/p>\n","protected":false},"excerpt":{"rendered":"When you\u2019re working with a database, there may be times when you want to get all of the unique values in a particular dataset. For example, you may want to get a list of the names of products you have sold in the past, or you may want to get a list of all the&hellip;","protected":false},"author":240,"featured_media":12378,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17284],"tags":[],"class_list":{"0":"post-12376","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-sql"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"SQL","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Distinct: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Distinct\" \/>\n<meta property=\"og:description\" content=\"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-02-23T18:32:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T10:29:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"664\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"SQL Distinct\",\"datePublished\":\"2020-02-23T18:32:10+00:00\",\"dateModified\":\"2023-12-01T10:29:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\"},\"wordCount\":680,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\",\"name\":\"SQL Distinct: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg\",\"datePublished\":\"2020-02-23T18:32:10+00:00\",\"dateModified\":\"2023-12-01T10:29:41+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-distinct\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg\",\"width\":1000,\"height\":664},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-distinct\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL\",\"item\":\"https:\/\/careerkarma.com\/blog\/sql\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SQL Distinct\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Distinct: A Complete Guide | Career Karma","description":"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.","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:\/\/careerkarma.com\/blog\/sql-distinct\/","og_locale":"en_US","og_type":"article","og_title":"SQL Distinct","og_description":"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.","og_url":"https:\/\/careerkarma.com\/blog\/sql-distinct\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-02-23T18:32:10+00:00","article_modified_time":"2023-12-01T10:29:41+00:00","og_image":[{"width":1000,"height":664,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"SQL Distinct","datePublished":"2020-02-23T18:32:10+00:00","dateModified":"2023-12-01T10:29:41+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/"},"wordCount":680,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/sql-distinct\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/","url":"https:\/\/careerkarma.com\/blog\/sql-distinct\/","name":"SQL Distinct: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg","datePublished":"2020-02-23T18:32:10+00:00","dateModified":"2023-12-01T10:29:41+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The DISTINCT operator in SQL allows coders to eliminate duplicate values and return unique results from a table. Learn more in this article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/sql-distinct\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DISTINCT-1.jpg","width":1000,"height":664},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/sql-distinct\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL","item":"https:\/\/careerkarma.com\/blog\/sql\/"},{"@type":"ListItem","position":3,"name":"SQL Distinct"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12376","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=12376"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12376\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12378"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12376"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12376"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12376"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}