{"id":12385,"date":"2021-01-11T11:23:00","date_gmt":"2021-01-11T19:23:00","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12385"},"modified":"2023-12-01T04:07:58","modified_gmt":"2023-12-01T12:07:58","slug":"sql-between","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/sql-between\/","title":{"rendered":"SQL Between: A Complete Guide"},"content":{"rendered":"\n<p><em>The SQL BETWEEN keyword retrieves values that fall within a particular set of values. It is often used to retrieve values between two dates or numbers. This keyword is used in WHERE clauses. The syntax for this keyword is: &#8220;BETWEEN min AND max;&#8221;.<\/em><\/p>\n\n\n\n<p>Often, you\u2019ll want to gather information from a database that exists between two values. You can use the <em>BETWEEN<\/em> operator to do this.<\/p>\n\n\n\n<p>The SQL BETWEEN keyword allows you to define a range for a query and retrieve all values within that range. For example, say you have a database of employee salaries. You can use <em>BETWEEN<\/em> to generate a list of all employees who earn between $50,000 and $60,000.<\/p>\n\n\n\n<p>In this tutorial, we look at how to use <em>BETWEEN<\/em> in <em>SQL<\/em> and discuss some of its practical applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL BETWEEN Keyword<\/h2>\n\n\n\n<p>The SQL <em>BETWEEN<\/em> keyword lets you select values in a particular range. The <em>BETWEEN<\/em> keyword is specified in the WHERE section of an SQL statement. You need to use the AND keyword to specify the two values in your range.<\/p>\n\n\n\n<p>Here\u2019s the syntax for an SQL <em>BETWEEN<\/em> condition:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT column_name FROM table_name\nWHERE column_name\nBETWEEN minimum_value AND maximum_value;<\/pre><\/div>\n\n\n\n<p>As you can see, the <em>BETWEEN<\/em> keyword comes after the WHERE statement. We use an AND keyword to separate the minimum and maximum values.<\/p>\n\n\n\n<p>You could retrieve values between two dates or numbers with the <em>BETWEEN<\/em> keyword. For instance, say you want to find out who was hired between two dates. You could do this with the <em>BETWEEN<\/em> keyword.<\/p>\n\n\n\n<p><em>BETWEEN<\/em> works on strings, too. In this case, BETWEEN finds strings that fall between your comparison. For instance, you could find all the students whose grades were between A and C in a database.<\/p>\n\n\n\n<p>This keyword works on SELECT, INSERT, UPDATE, and DELETE statements.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL BETWEEN Example<\/h2>\n\n\n\n<p>Consider the following table of employees:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td><strong>name<\/strong><\/td><td><strong>salary<\/strong><\/td><\/tr><tr><td>Geoff<\/td><td>38000<\/td><\/tr><tr><td>Mike<\/td><td>32000<\/td><\/tr><tr><td>Emma<\/td><td>50000<\/td><\/tr><tr><td>Jonah<\/td><td>50000<\/td><\/tr><tr><td>Luke<\/td><td>32000<\/td><\/tr><tr><td>Alexis<\/td><td>33000<\/td><\/tr><tr><td>Hannah<\/td><td>30000<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>Our table has two columns and seven rows. We created this table using the <a href=\"https:\/\/careerkarma.com\/blog\/sql-create-table\/\">SQL CREATE TABLE<\/a> and <a href=\"https:\/\/careerkarma.com\/blog\/sql-insert\/\">SQL INSERT<\/a> commands.<\/p>\n\n\n\n<p>Let\u2019s say that we want to retrieve the names and salaries of all employees who earn between $35,000 and $55,000 per year. We can use the following query to retrieve this data:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name, salary FROM employees\nWHERE salary \nBETWEEN 35000 AND 55000;<\/pre><\/div>\n\n\n\n<p>Our SQL server returns the following:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>salary<\/td><\/tr><tr><td>Geoff<\/td><td>38000<\/td><\/tr><tr><td>Mike<\/td><td>32000<\/td><\/tr><tr><td>Emma<\/td><td>50000<\/td><\/tr><tr><td>Jonah<\/td><td>50000<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>(4 rows)<\/p>\n\n\n\n<p>You can also use the <em>BETWEEN<\/em> operator to search for information between certain dates.<\/p>\n\n\n\n<p>Say we want to retrieve the names and hire dates of all employees brought on between January 1, 2009 and December 31, 2011. We can also do this using a BETWEEN statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name, hired_date FROM employees\nWHERE hired_date\nBETWEEN CAST('2009-01-01' AS DATE) AND CAST('2011-12-31' AS DATE);<\/pre><\/div>\n\n\n\n<p>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>hire date<\/td><\/tr><tr><td>Luke<\/td><td>2009-12-03<\/td><\/tr><tr><td>Emma<\/td><td>2010-03-19<\/td><\/tr><tr><td>Mike<\/td><td>2010-03-19<\/td><\/tr><tr><td>Hannah<\/td><td>2011-09-30<\/td><\/tr><tr><td>Jonah<\/td><td>2010-07-23<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>(4 rows)<\/p>\n\n\n\n<p>Let&#8217;s use an example of the <em>BETWEEN<\/em> operator with a string. We want to find out the names of all employees whose names start with any letter between <em>A<\/em> and <em>F<\/em> in the alphabet. We can do this again using a BETWEEN statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT name FROM employees\nWHERE name\nBETWEEN 'A' AND 'F';<\/pre><\/div>\n\n\n\n<p>Our query returns the following: <\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><\/tr><tr><td>Emma<\/td><\/tr><tr><td>Alexis<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>(2 rows)<\/p>\n\n\n\n<iframe loading=\"lazy\" src=\"https:\/\/repl.it\/@careerkarma\/SQL-Between?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 <em>BETWEEN<\/em> operator retrieves records whose column values that lie within a specific range. You can use this operator to find values between two strings, dates, and numbers.<\/p>\n\n\n\n<p>As a challenge, write a query that would retrieve the IDs of all employees in the range of 300 and 400. The table is called &#8220;employees&#8221; and each employee ID is stored in the column &#8220;id&#8221;.<\/p>\n\n\n\n<p>Do you want to learn more about SQL? Check out our<a href=\"https:\/\/careerkarma.com\/blog\/learn-sql\/\"> How to Learn SQL guide<\/a>. You&#8217;ll find a list of top courses and learning resources to help you build your knowledge of the SQL database language.<\/p>\n","protected":false},"excerpt":{"rendered":"The SQL BETWEEN keyword retrieves values that fall within a particular set of values. It is often used to retrieve values between two dates or numbers. This keyword is used in WHERE clauses. The syntax for this keyword is: \"BETWEEN min AND max;\". Often, you\u2019ll want to gather information from a database that exists between&hellip;","protected":false},"author":240,"featured_media":12386,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17284],"tags":[],"class_list":{"0":"post-12385","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.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Between: A Complete Guide: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.\" \/>\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-between\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Between: A Complete Guide\" \/>\n<meta property=\"og:description\" content=\"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/sql-between\/\" \/>\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-11T19:23:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:07:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.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=\"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-between\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"SQL Between: A Complete Guide\",\"datePublished\":\"2021-01-11T19:23:00+00:00\",\"dateModified\":\"2023-12-01T12:07:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/\"},\"wordCount\":597,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-between\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/sql-between\/\",\"name\":\"SQL Between: A Complete Guide: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg\",\"datePublished\":\"2021-01-11T19:23:00+00:00\",\"dateModified\":\"2023-12-01T12:07:58+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-between\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-between\/#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 Between: 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\/#\/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 Between: A Complete Guide: A Complete Guide | Career Karma","description":"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.","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-between\/","og_locale":"en_US","og_type":"article","og_title":"SQL Between: A Complete Guide","og_description":"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/sql-between\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-01-11T19:23:00+00:00","article_modified_time":"2023-12-01T12:07:58+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.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-between\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"SQL Between: A Complete Guide","datePublished":"2021-01-11T19:23:00+00:00","dateModified":"2023-12-01T12:07:58+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/"},"wordCount":597,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/sql-between\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/sql-between\/","url":"https:\/\/careerkarma.com\/blog\/sql-between\/","name":"SQL Between: A Complete Guide: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg","datePublished":"2021-01-11T19:23:00+00:00","dateModified":"2023-12-01T12:07:58+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The BETWEEN operator in SQL allows programmers to query specific data within a particular range from a database. Learn more about the SQL BETWEEN operator on Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/sql-between\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-Between.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/sql-between\/#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 Between: 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\/#\/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\/12385","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=12385"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12385\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12386"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12385"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12385"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12385"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}