{"id":12408,"date":"2020-12-14T14:05:22","date_gmt":"2020-12-14T22:05:22","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12408"},"modified":"2023-12-01T04:05:55","modified_gmt":"2023-12-01T12:05:55","slug":"sql-delete-row","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/","title":{"rendered":"SQL Delete Row: A Guide"},"content":{"rendered":"\n<p><em>The SQL DELETE statement deletes a row from a database table. You can use the WHERE statement to specify which records should be deleted. If you do not specify a where statement, every row in the table will be deleted.<\/em><\/p>\n\n\n\n<p>Deleting rows is a common operation in <em>SQL<\/em>. For example, a user may decide to delete their account on your website. This will require you to remove their data from your user database.<\/p>\n\n\n\n<p>You can use the <em>SQL DELETE<\/em> statement to remove any rows from your table. In this tutorial, we are going to discuss how you can perform an <em>SQL delete row<\/em> command on your database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Records Refresher<\/h2>\n\n\n\n<p>Databases are made up of a series of tables, each of which stores their own records.<\/p>\n\n\n\n<p>For example, our company database may include tables on employees, suppliers, departments, payroll, and more. Each of those tables would include their own records, which are individual entries in a table. A payroll table may include a list of payments made to employees.<\/p>\n\n\n\n<p>In order to add a new record to a table, we use an <a href=\"https:\/\/careerkarma.com\/blog\/sql-insert\/\">SQL<\/a> <em>INSERT<\/em> statement. This allows us to add a record containing specific values to a column of our choosing.<\/p>\n\n\n\n<p>Here\u2019s an example of an <em>SQL INSERT<\/em> command in action:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>INSERT INTO company_departments (name, department_id) VALUES ('Payroll', 5);<\/pre><\/div>\n\n\n\n<p>But what if we want to remove a row from our table? We can use the DELETE row statement to accomplish this goal.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Delete Row from Table<\/h2>\n\n\n\n<p>The <em>SQL DELETE<\/em> statement removes a row or multiple rows from a table. The statement takes in two parameters. First, you should specify table name that the <em>DELETE<\/em> statement should focus on. Optionally, specify any conditions that must be met before a record is deleted.<\/p>\n\n\n\n<p>Here is the syntax for a <em>DELETE<\/em> statement:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>DELETE FROM table_name WHERE conditions_are_met;<\/pre><\/div>\n\n\n\n<p>A delete statement does not have any &#8220;undo&#8221; command. Once a record has been removed from a database, it cannot be recovered.<\/p>\n\n\n\n<p>A WHERE statement lets you specify which records should be deleted. This uses the same syntax as an <a href=\"https:\/\/careerkarma.com\/blog\/sql-where\/\">SQL <em>WHERE<\/em><\/a> statement with any other command, like SQL <em>INSERT<\/em> or <em>UPDATE<\/em>.<\/p>\n\n\n\n<p>The <em>DELETE<\/em> statement does not delete a table. It will delete the records within that table.<\/p>\n\n\n\n<p>Let&#8217;s take a look at an example of the <em>SQL DELETE<\/em> statement.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Delete Row SQL Example<\/h3>\n\n\n\n<p>If we want to delete only records that match a certain set of conditions, we can do so by specifying a <em>WHERE<\/em> clause. Let\u2019s say that we have decided that the <em>Marketing<\/em> department should be merged into sales.<\/p>\n\n\n\n<p>Our table currently contains the following records:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>title<\/td><td>department_id<\/td><\/tr><tr><td>John<br><\/td><td>Marketing<br><\/td><td>2<br><\/td><\/tr><tr><td>Rebecca<\/td><td>Sales<\/td><td>3<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>We\u2019ll use a DELETE query to delete the <em>Marketing<\/em> department from our list:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>DELETE FROM company_departments WHERE title = 'Marketing';<\/pre><\/div>\n\n\n\n<p>We can check if our record has been deleted using an <a href=\"https:\/\/careerkarma.com\/blog\/sql-select\/\">SQL SELECT<\/a> statement. Our result set is:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>title<\/td><td>department_id<\/td><\/tr><tr><td>Rebecca<\/td><td>Sales<\/td><td>3<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>Rebecca&#8217;s employee record was not affected by our DELETE operation because we only deleted people whose title was equal to &#8220;Marketing&#8221;. But, John&#8217;s records is gone. This is because John worked for the marketing department.<\/p>\n\n\n\n<p>In this case, we have deleted a single record. If there were more employees in the marketing department, their records would have been removed too.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Delete All Rows SQL Example<\/h3>\n\n\n\n<p>So, let\u2019s say that we want to delete all the records in our <em>company_departments<\/em> table because we are undergoing a corporate reorganization. We could use this command to delete those records:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>DELETE FROM company_departments;<\/pre><\/div>\n\n\n\n<p>This query removes all rows in our table <em>company_departments<\/em>. This is because we have not specified any conditions that must be met before a record is deleted. If you omit the where clause from any <em>DELETE<\/em> command, it will delete all rows within the table.<\/p>\n\n\n\n<p>If we query our <em>company_departments<\/em> table to look for any employee with the title <em>Marketing<\/em>, we can see that there are no records:<\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td>name<\/td><td>title<\/td><td>department_id<\/td><\/tr><tr><td><br><\/td><td><br><\/td><td><br><\/td><\/tr><\/tbody><\/table>\n\n\n\n<p>(0 rows)<\/p>\n\n\n\n<iframe loading=\"lazy\" src=\"https:\/\/repl.it\/@careerkarma\/SQL-Delete?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 DELETE statement removes rows from a database. This statement removes all rows from a database unless you specify a WHERE statement. The WHERE statement lets you control which records are removed.<\/p>\n\n\n\n<p>In this tutorial, we discussed the basics of how rows are created in <em>SQL<\/em>, and. We then discussed how you can use the <em>DELETE<\/em> statement to remove a row from an <em>SQL<\/em> table. We have also discussed how you can delete records based on a certain condition, and delete all data in a table.<\/p>\n\n\n\n<p>Are you looking to learn more about SQL? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/learn-sql\/\">How to Learn SQL guide<\/a> for a list of top learning resources and online courses.<\/p>\n","protected":false},"excerpt":{"rendered":"The SQL DELETE statement deletes a row from a database table. You can use the WHERE statement to specify which records should be deleted. If you do not specify a where statement, every row in the table will be deleted. Deleting rows is a common operation in SQL. For example, a user may decide to&hellip;","protected":false},"author":240,"featured_media":12409,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17284],"tags":[],"class_list":{"0":"post-12408","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 Delete Row: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE 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-delete-row\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Delete Row: A Guide\" \/>\n<meta property=\"og:description\" content=\"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE in this Career Karma article.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\" \/>\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-14T22:05:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.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-delete-row\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"SQL Delete Row: A Guide\",\"datePublished\":\"2020-12-14T22:05:22+00:00\",\"dateModified\":\"2023-12-01T12:05:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\"},\"wordCount\":765,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg\",\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\",\"name\":\"SQL Delete Row: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg\",\"datePublished\":\"2020-12-14T22:05:22+00:00\",\"dateModified\":\"2023-12-01T12:05:55+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE in this Career Karma article.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#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 Delete Row: A 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 Delete Row: A Guide | Career Karma","description":"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE 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-delete-row\/","og_locale":"en_US","og_type":"article","og_title":"SQL Delete Row: A Guide","og_description":"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE in this Career Karma article.","og_url":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-14T22:05:22+00:00","article_modified_time":"2023-12-01T12:05:55+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.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-delete-row\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"SQL Delete Row: A Guide","datePublished":"2020-12-14T22:05:22+00:00","dateModified":"2023-12-01T12:05:55+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/"},"wordCount":765,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg","articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/sql-delete-row\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/","url":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/","name":"SQL Delete Row: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg","datePublished":"2020-12-14T22:05:22+00:00","dateModified":"2023-12-01T12:05:55+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The DELETE SQL statement allows developers to remove a specific row from a database table. Learn how to use SQL DELETE in this Career Karma article.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/sql-delete-row\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/SQL-DELETE-ROW.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/sql-delete-row\/#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 Delete Row: A 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\/12408","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=12408"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12408\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12409"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12408"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12408"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12408"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}