{"id":19810,"date":"2020-12-17T22:51:11","date_gmt":"2020-12-18T06:51:11","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19810"},"modified":"2021-01-04T05:50:34","modified_gmt":"2021-01-04T13:50:34","slug":"sql-not-equal","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/","title":{"rendered":"How Is SQL\u2019s Not Equal Operator Used?"},"content":{"rendered":"\n<p><em>The SQL not equal operator is represented by &lt;&gt;. This operator lets you select rows from a database that do not meet a particular condition. The != operator is used in a WHERE statement. The != operator can be used instead of &lt;&gt; in some instances of SQL.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use the SQL Not Equal Operator<\/h2>\n\n\n\n<p>Have you ever wanted to select rows where a field&#8217;s contents are not equal to a particular value? You&#8217;re in luck because SQL has an operator built for this purpose.<\/p>\n\n\n\n<p>You can select rows based on whether one or more of their fields&#8217; values is not equal to a particular value.<\/p>\n\n\n\n<p>In this guide, we&#8217;re going to talk about using the SQL not equal operator. We&#8217;ll refer to an example to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Not Equal<\/h2>\n\n\n\n<p>The SQL not equal operator is &lt;&gt;. You should specify this in a WHERE statement. This lets you select rows where a particular column&#8217;s contents is not equal to the value you have specified. You can also use != as a not equal statement in some versions of SQL.<\/p>\n\n\n\n<p>Let\u2019s take a look at a typical query in SQL:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>SELECT * from names\nWHERE ...stuff goes here<\/pre><\/div>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/sql-select\/\">SQL SELECT statement<\/a> looks at column names from your specified table (in this instance, it\u2019s names). The <a href=\"https:\/\/careerkarma.com\/blog\/sql-where\/\">SQL WHERE clause<\/a> is where our conditional is going to go for the not equal statement.<\/p>\n\n\n\n<p>In traditional ISO standard SQL, the symbol that represents not equal is &lt;&gt;. In other versions, you can use !=. If you\u2019re unsure which to use, stick with the standard since that for sure works. Think the bang equal was created because it\u2019s similar to how other programming languages represent the not equal clause.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Not Equal SQL Example<\/h2>\n\n\n\n<p>We&#8217;re going to create a table called &#8220;names&#8221;. We&#8217;re going to add some records to that table. We will then use the not equal symbol to query data from the table:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>CREATE TABLE names (\n id INTEGER PRIMARY KEY AUTOINCREMENT,\n name VARCHAR(128) NOT NULL\n);\nINSERT into names VALUES (1, &quot;Christina&quot;);\nINSERT into names VALUES (2, &quot;Ashleigh&quot;);\nINSERT into names VALUES (3, &quot;Sarah&quot;);\nINSERT into names VALUES (4, &quot;Tad&quot;);\nINSERT into names VALUES (5, &quot;Dustin&quot;);\nINSERT into names VALUES (6, &quot;Elissa&quot;);\nINSERT into names VALUES (7, &quot;Kelly&quot;);\n \nSELECT * from names\nWHERE name &lt;&gt; &quot;Christina&quot; AND id != 7;<\/pre><\/div>\n\n\n\n<p>I used both the &lt;&gt; and the != to show that both work in this instance. I\u2019m using sqlite3 in a Repl.it sandbox to host this database. Your experience may vary if you are using a different code editor or SQL sandbox environment.<\/p>\n\n\n\n<p>The result set from our SQL statement shows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre> \n2|Ashleigh\n3|Sarah\n4|Tad\n5|Dustin\n6|Elissa<\/pre><\/div>\n\n\n\n<p>Our query returns all the records where &#8220;name&#8221; is not equal to &#8220;Christina&#8221;. The &#8220;id&#8221; must not equal to 7 for a record to be returned. You did it! That\u2019s how you use the not equal to comparison operator in SQL.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You can select rows from a database whose contents do not match a particular value using the SQL not equal operator. In most versions of SQL, the not equal operator is a less than followed by a greater than sign (&lt;&gt;).<\/p>\n\n\n\n<p>An exclamation mark followed by an equals sign (!=) is available as a not equal operator in some versions of SQL. This statement lets you compare two expressions to see whether they are not equal to each other.<\/p>\n\n\n\n<p>Are you curious to learn more about SQL? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/learn-sql\/\">How to Learn SQL guide<\/a>. In this guide you&#8217;ll find expert advice on the top learning resources that you can use to advance your knowledge.<\/p>\n","protected":false},"excerpt":{"rendered":"The SQL not equal operator is represented by &lt;&gt;. This operator lets you select rows from a database that do not meet a particular condition. The != operator is used in a WHERE statement. The != operator can be used instead of &lt;&gt; in some instances of SQL. How to Use the SQL Not Equal&hellip;","protected":false},"author":77,"featured_media":15988,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17284],"tags":[],"class_list":{"0":"post-19810","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>How Is SQL\u2019s Not Equal Operator Used? | Career Karma<\/title>\n<meta name=\"description\" content=\"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at 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-not-equal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Is SQL\u2019s Not Equal Operator Used?\" \/>\n<meta property=\"og:description\" content=\"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/sql-not-equal\/\" \/>\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-12-18T06:51:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-04T13:50:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\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=\"Christina Kopecky\" \/>\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-not-equal\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"How Is SQL\u2019s Not Equal Operator Used?\",\"datePublished\":\"2020-12-18T06:51:11+00:00\",\"dateModified\":\"2021-01-04T13:50:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/\"},\"wordCount\":547,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/\",\"name\":\"How Is SQL\u2019s Not Equal Operator Used? | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg\",\"datePublished\":\"2020-12-18T06:51:11+00:00\",\"dateModified\":\"2021-01-04T13:50:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Coding SQL in a PHP file on a laptop\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/sql-not-equal\\\/#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\":\"How Is SQL\u2019s Not Equal Operator Used?\"}]},{\"@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\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\\\/\\\/www.linkedin.com\\\/in\\\/cmvnk\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/christina-kopecky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How Is SQL\u2019s Not Equal Operator Used? | Career Karma","description":"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at 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-not-equal\/","og_locale":"en_US","og_type":"article","og_title":"How Is SQL\u2019s Not Equal Operator Used?","og_description":"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-18T06:51:11+00:00","article_modified_time":"2021-01-04T13:50:34+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"How Is SQL\u2019s Not Equal Operator Used?","datePublished":"2020-12-18T06:51:11+00:00","dateModified":"2021-01-04T13:50:34+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/"},"wordCount":547,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/sql-not-equal\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/","url":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/","name":"How Is SQL\u2019s Not Equal Operator Used? | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg","datePublished":"2020-12-18T06:51:11+00:00","dateModified":"2021-01-04T13:50:34+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Use the SQL Not Equal Operator to compare two expressions \u2013 learn more about how to use it and \u201cwhere\u201d at Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/sql-not-equal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/caspar-camille-rubin-fPkvU7RDmCo-unsplash.jpg","width":1020,"height":680,"caption":"Coding SQL in a PHP file on a laptop"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/sql-not-equal\/#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":"How Is SQL\u2019s Not Equal Operator Used?"}]},{"@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\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19810","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\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19810"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19810\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/15988"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19810"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19810"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19810"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}