{"id":12411,"date":"2021-01-12T14:18:56","date_gmt":"2021-01-12T22:18:56","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12411"},"modified":"2023-12-01T04:08:02","modified_gmt":"2023-12-01T12:08:02","slug":"sql-order-by","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/sql-order-by\/","title":{"rendered":"SQL ORDER BY: A Complete Guide"},"content":{"rendered":"\n<p><em>The SQL ORDER BY statement determines the order in which records are returned by a query. You can return records in ascending or descending order by the value of any column in the table.<\/em><\/p>\n\n\n\n<p>Ordering query results makes it easier to find the exact records you are looking for.<\/p>\n\n\n\n<p>For example, say you wanted to know which employees had won the most <em>employee of the month<\/em> awards. You may want to order your query by that data point to display the employee who had won the most awards first. <\/p>\n\n\n\n<p>The SQL <em>ORDER BY<\/em> statement orders the results of a query depending on your conditions. In this tutorial, we are going to discuss how to use the <em>ORDER BY<\/em> statement. We&#8217;ll talk through an example to help you master this keyword.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL ORDER BY<\/h2>\n\n\n\n<p>The SQL <em>ORDER BY <\/em>keyword orders the results of a query. You can order results in either ascending or descending order by a particular column or set of columns.<\/p>\n\n\n\n<p>Here is the syntax for an <em>ORDER BY<\/em> query:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name\nFROM employees\nORDER BY name, joined ASC;<\/pre><\/div>\n\n\n\n<p>After the <a href=\"https:\/\/careerkarma.com\/blog\/sql-select\/\">SQL SELECT statement<\/a>, we specify the name of the column we want to retrieve. We then state we want to retrieve data from the <em>employees<\/em> table.<\/p>\n\n\n\n<p>The <em>ORDER BY<\/em> statement orders our query by the <em>name<\/em> and <em>joined<\/em> columns in descending order. Our database will first be ordered by names in descending order.<\/p>\n\n\n\n<p>If there are multiple people who have the same name, the person who joined the latest will appear at the bottom of those names.<\/p>\n\n\n\n<p>SQL orders a column in ascending order by default. You can order a column in asecnding or descending order using the SQL <em>ORDER BY<\/em> clause.<\/p>\n\n\n\n<p>The two possible sort orders are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>ASC: Ascending.<\/li><li>DESC: Descending.<\/li><\/ul>\n\n\n\n<p>You can use a column list to order multiple columns by different orders:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name\nFROM employees\nORDER BY name ASC, joined DESC;<\/pre><\/div>\n\n\n\n<p>This query orders our table by <em>name<\/em> in ascending order. Then, our table is ordered by <em>joined<\/em> in descending order.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">ORDER BY SQL Example<\/h2>\n\n\n\n<p>Let\u2019s run an example query to demonstrate the <em>ORDER BY<\/em> operator in action. We want to retrieve a list of all employee names and the titles for each employee. Our goal is to sort this list in alphabetical order by employee name.<\/p>\n\n\n\n<p>To retrieve this data, 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 ORDER BY name ASC;<\/pre><\/div>\n\n\n\n<p>Our query sorts the result set. Here is our result set in ascending order:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>title<\/td><\/tr><tr><td>Alexis<\/td><td>Sales Associate<\/td><\/tr><tr><td>Geoff<\/td><td>Senior Sales Associate<\/td><\/tr><tr><td>Hannah<\/td><td>Sales Associate<\/td><\/tr><tr><td>Jonah<\/td><td>Vice President of Sales<\/td><\/tr><tr><td>Luke<\/td><td>Sales Associate<\/td><\/tr><tr><td>Mike<\/td><td>Sales Associate<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>If you wanted to sort in reverse alphabetical order, you would substitute the <em>ASC<\/em> statement for <em>DESC<\/em>.<\/p>\n\n\n\n<p>You can also sort by multiple columns. This can be useful if you have duplicate values in your table that you want to be sorted. <\/p>\n\n\n\n<p>For example, say you want to find out who has been working for you for the shortest time, in order of their titles. You could do this using the following query:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name, title, hired_date FROM employees ORDER BY title, hired_date DESC;<\/pre><\/div>\n\n\n\n<p>Our <em>ORDER BY<\/em> statement sorts the query results. Here is the result of our query:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>title<\/td><td>hired_date<\/td><\/tr><tr><td>Emma<\/td><td>Marketing Director<\/td><td>2010-03-19<\/td><\/tr><tr><td>Alexis<\/td><td>Sales Associate<\/td><td>2014-04-01<\/td><\/tr><tr><td>Hannah<\/td><td>Sales Associate<\/td><td>2011-09-30<\/td><\/tr><tr><td>Mike<\/td><td>Sales Associate<\/td><td>2010-03-19<\/td><\/tr><tr><td>Luke<\/td><td>Sales Associate<\/td><td>2009-12-03<\/td><\/tr><tr><td>Geoff<\/td><td>Senior Sales Associate<\/td><td>2012-03-17<\/td><\/tr><tr><td>Jonah<\/td><td>Vice President of Sales<\/td><td>2010-07-23<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>(7 rows)<\/p>\n\n\n\n<p>As you can see, our table is sorted by both the employee\u2019s title and date on which they were hired. Our <em>ORDER BY<\/em> statement successfully sorted the records.<\/p>\n\n\n\n<p>The most recently hired sales associate was Alexis. Our sales associate working for the company the longest is Luke. We can also see the date on which every other employee was hired, in order of their title.<\/p>\n\n\n\n<iframe loading=\"lazy\" src=\"https:\/\/repl.it\/@careerkarma\/SQL-Order-By?lite=true\" width=\"100%\" height=\"400px\" frameborder=\"0\"><\/iframe>\n<br>\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The SQL ORDER BY statement modifies the order in which records are returned by a query. You can order a query in ascending or descending order. The default is for a query to return data in ascending order.<\/p>\n\n\n\n<p>Do you want to learn more about SQL? Read our <a href=\"https:\/\/careerkarma.com\/blog\/learn-sql\/\">How to Learn SQL guide<\/a>. You&#8217;ll find top tips on how to learn SQL. We have prepared a list of learning resources in our guide that will help you build the skills you need.<\/p>\n","protected":false},"excerpt":{"rendered":"The SQL ORDER BY statement determines the order in which records are returned by a query. You can return records in ascending or descending order by the value of any column in the table. Ordering query results makes it easier to find the exact records you are looking for. For example, say you wanted to&hellip;","protected":false},"author":240,"featured_media":12412,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17284],"tags":[],"class_list":{"0":"post-12411","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":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL ORDER BY: A Complete Guide: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma 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-order-by\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL ORDER BY: A Complete Guide\" \/>\n<meta property=\"og:description\" content=\"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/sql-order-by\/\" \/>\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=\"2021-01-12T22:18:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:08:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"SQL ORDER BY: A Complete Guide\",\"datePublished\":\"2021-01-12T22:18:56+00:00\",\"dateModified\":\"2023-12-01T12:08:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/\"},\"wordCount\":700,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/SQL-ORDER-BY.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/\",\"name\":\"SQL ORDER BY: A Complete Guide: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/SQL-ORDER-BY.jpg\",\"datePublished\":\"2021-01-12T22:18:56+00:00\",\"dateModified\":\"2023-12-01T12:08:02+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma article.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/SQL-ORDER-BY.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/SQL-ORDER-BY.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-order-by\\\/#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 ORDER BY: A Complete Guide\"}]},{\"@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\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"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 ORDER BY: A Complete Guide: A Complete Guide | Career Karma","description":"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma 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-order-by\/","og_locale":"en_US","og_type":"article","og_title":"SQL ORDER BY: A Complete Guide","og_description":"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma article.","og_url":"https:\/\/careerkarma.com\/blog\/sql-order-by\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-12T22:18:56+00:00","article_modified_time":"2023-12-01T12:08:02+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"SQL ORDER BY: A Complete Guide","datePublished":"2021-01-12T22:18:56+00:00","dateModified":"2023-12-01T12:08:02+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/"},"wordCount":700,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/sql-order-by\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/","url":"https:\/\/careerkarma.com\/blog\/sql-order-by\/","name":"SQL ORDER BY: A Complete Guide: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.jpg","datePublished":"2021-01-12T22:18:56+00:00","dateModified":"2023-12-01T12:08:02+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The order by SQL function allows coders to order the result of a query in ascending or descending order. Learn more in this Career Karma article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/sql-order-by\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-ORDER-BY.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/sql-order-by\/#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 ORDER BY: A Complete Guide"}]},{"@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\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","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\/12411","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=12411"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12411\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12412"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12411"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12411"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}