{"id":22241,"date":"2023-06-08T12:45:07","date_gmt":"2023-06-08T12:45:07","guid":{"rendered":"https:\/\/machinelearningplus.com\/?p=22241"},"modified":"2023-06-10T07:36:36","modified_gmt":"2023-06-10T07:36:36","slug":"sql-delete","status":"publish","type":"post","link":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/","title":{"rendered":"SQL DELETE &#8211; A Detailed Overview"},"content":{"rendered":"<p><strong>The SQL DELETE statement is a powerful command that allows you to remove rows from a table in a relational database. This command can be used to delete a single record, multiple records, or all records from a table.<\/strong><\/p>\n<p>The key thing to note here is that <code>DELETE<\/code> removes entire rows of data, not individual columns within a row.<\/p>\n<p>Let&#8217;s delve deeper into this command, and explore how it works with real-life examples.<\/p>\n<h2>What is the SQL DELETE statement?<\/h2>\n<p>The DELETE statement is used in SQL to remove one or more rows from a table. The basic syntax for the <code>DELETE<\/code> statement is<\/p>\n<pre><code class=\"language-python\">DELETE FROM table_name\nWHERE condition;\n<\/code><\/pre>\n<ul>\n<li><strong>table_name<\/strong>: Represents the name of the table from which you want to delete data.<\/p>\n<\/li>\n<li>\n<p><strong>WHERE condition<\/strong>: Specifies the conditions that must be met for rows to be deleted. If you omit the WHERE clause, all rows in the table will be deleted!<\/p>\n<\/li>\n<\/ul>\n<p>Keep in mind, deletion is permanent and you can&#8217;t undo a <code>DELETE<\/code> operation, so be sure to have backup or recovery strategies in place.<\/p>\n<h2>Example Setup: Sample Database<\/h2>\n<p>For our examples, we will use a simple database table named <code>Students<\/code>. Here&#8217;s the structure of our Students table<\/p>\n<pre><code class=\"language-python\">CREATE TABLE Students (\n    ID int PRIMARY KEY,\n    FirstName varchar(50),\n    LastName varchar(50),\n    GradeLevel int\n);\n<\/code><\/pre>\n<p>We have four columns: <code>ID<\/code>, <code>FirstName<\/code>, <code>LastName<\/code>, and <code>GradeLevel<\/code>. The <code>ID<\/code> column is our primary key, meaning each student will have a unique ID.<\/p>\n<p>Let&#8217;s insert some data into our <code>Students<\/code> table<\/p>\n<pre><code class=\"language-python\">INSERT INTO Students (ID, FirstName, LastName, GradeLevel)\nVALUES\n(1, 'John', 'Doe', 10),\n(2, 'Jane', 'Doe', 11),\n(3, 'Jim', 'Brown', 12),\n(4, 'Jill', 'Smith', 10),\n(5, 'Jack', 'Johnson', 12);\n<\/code><\/pre>\n<p>Now we have five students in our <code>Students<\/code> table.<\/p>\n<h2>1) Deleting a Single Record<\/h2>\n<p>Suppose we want to delete the student with <strong>ID = 3<\/strong> from our table. We can accomplish this with the <code>DELETE<\/code> statement as follows:<\/p>\n<pre><code class=\"language-python\">DELETE FROM Students \nWHERE ID = 3;\n<\/code><\/pre>\n<p>This will remove the row where <code>ID<\/code> equals 3. Jim Brown is no longer in our <code>Students<\/code> table.<\/p>\n<p>Output:<\/p>\n<pre><code class=\"language-python\">ID   FirstName   LastName   GradeLevel\n1    John        Doe        10\n2    Jane        Doe        11\n4    Jill        Smith      10\n5    Jack        Johnson    12\n<\/code><\/pre>\n<h2>2) Deleting Multiple Records<\/h2>\n<p>Imagine we need to delete all students in the <code>GradeLevel<\/code> 10. The following command will accomplish this:<\/p>\n<pre><code class=\"language-python\">DELETE FROM Students\nWHERE GradeLevel = 10;\n<\/code><\/pre>\n<p>This operation will delete both <strong>John Doe<\/strong> and <strong>Jill Smith<\/strong>, as they are in <code>grade<\/code> 10.<\/p>\n<p>Output:<\/p>\n<pre><code class=\"language-python\">ID   FirstName   LastName   GradeLevel\n2    Jane        Doe        11\n5    Jack        Johnson    12\n<\/code><\/pre>\n<h2>3) Deleting All Records<\/h2>\n<p>If you want to delete all records from a table, you can use the <code>DELETE<\/code> command without a <code>WHERE<\/code> clause. For example<\/p>\n<pre><code class=\"language-python\">DELETE FROM Students;\n<\/code><\/pre>\n<p>This command will remove all rows in the <code>Students<\/code> table. Be careful when using this, as you may permanently lose your data!<\/p>\n<h2>Conclusion<\/h2>\n<p>The SQL <code>DELETE<\/code> statement is a powerful command for removing data from your SQL tables. Always ensure you are using it cautiously, with the understanding that deleted data may not be recoverable.<\/p>\n<p>If you&#8217;re experimenting or learning, it&#8217;s always a good idea to work on a copy of your data or ensure you have a backup available. As with any powerful tool, using the <code>DELETE<\/code> command responsibly is crucial for effective database management.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The SQL DELETE statement is a powerful command that allows you to remove rows from a table in a relational database. This command can be used to delete a single record, multiple records, or all records from a table. The key thing to note here is that DELETE removes entire rows of data, not individual [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":22277,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"default","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[2091],"tags":[2094,2092],"class_list":["post-22241","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sql","tag-data-engineering","tag-sql"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL DELETE - A Detailed Overview - machinelearningplus<\/title>\n<meta name=\"description\" content=\"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/machinelearningplus.com\/sql\/sql-delete\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL DELETE - A Detailed Overview - machinelearningplus\" \/>\n<meta property=\"og:description\" content=\"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/machinelearningplus.com\/sql\/sql-delete\/\" \/>\n<meta property=\"og:site_name\" content=\"machinelearningplus\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-08T12:45:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-10T07:36:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jagdeesh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jagdeesh\" \/>\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\":\"TechArticle\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/\"},\"author\":{\"name\":\"Jagdeesh\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/person\\\/b1493170590ee4eb9622bcaea5b3b7da\"},\"headline\":\"SQL DELETE &#8211; A Detailed Overview\",\"datePublished\":\"2023-06-08T12:45:07+00:00\",\"dateModified\":\"2023-06-10T07:36:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/\"},\"wordCount\":425,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-DELETE.png\",\"keywords\":[\"Data Engineering\",\"SQL\"],\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/\",\"name\":\"SQL DELETE - A Detailed Overview - machinelearningplus\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-DELETE.png\",\"datePublished\":\"2023-06-08T12:45:07+00:00\",\"dateModified\":\"2023-06-10T07:36:36+00:00\",\"description\":\"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/sql\\\/sql-delete\\\/#primaryimage\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-DELETE.png\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-DELETE.png\",\"width\":1080,\"height\":1080,\"caption\":\"SQL DELETE\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#website\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/\",\"name\":\"machinelearningplus\",\"description\":\"Learn Data Science (AI \\\/ ML) Online\",\"publisher\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/machinelearningplus.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\",\"name\":\"machinelearningplus\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/MachineLearningplus-logo.svg\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/MachineLearningplus-logo.svg\",\"width\":348,\"height\":36,\"caption\":\"machinelearningplus\"},\"image\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/person\\\/b1493170590ee4eb9622bcaea5b3b7da\",\"name\":\"Jagdeesh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391\",\"caption\":\"Jagdeesh\"},\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/author\\\/jagdeesh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL DELETE - A Detailed Overview - machinelearningplus","description":"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.","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:\/\/machinelearningplus.com\/sql\/sql-delete\/","og_locale":"en_US","og_type":"article","og_title":"SQL DELETE - A Detailed Overview - machinelearningplus","og_description":"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.","og_url":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/","og_site_name":"machinelearningplus","article_published_time":"2023-06-08T12:45:07+00:00","article_modified_time":"2023-06-10T07:36:36+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png","type":"image\/png"}],"author":"Jagdeesh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jagdeesh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/#article","isPartOf":{"@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/"},"author":{"name":"Jagdeesh","@id":"https:\/\/machinelearningplus.com\/#\/schema\/person\/b1493170590ee4eb9622bcaea5b3b7da"},"headline":"SQL DELETE &#8211; A Detailed Overview","datePublished":"2023-06-08T12:45:07+00:00","dateModified":"2023-06-10T07:36:36+00:00","mainEntityOfPage":{"@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/"},"wordCount":425,"commentCount":0,"publisher":{"@id":"https:\/\/machinelearningplus.com\/#organization"},"image":{"@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png","keywords":["Data Engineering","SQL"],"articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/machinelearningplus.com\/sql\/sql-delete\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/","url":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/","name":"SQL DELETE - A Detailed Overview - machinelearningplus","isPartOf":{"@id":"https:\/\/machinelearningplus.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/#primaryimage"},"image":{"@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png","datePublished":"2023-06-08T12:45:07+00:00","dateModified":"2023-06-10T07:36:36+00:00","description":"Master the SQL DELETE statement with practical examples. Learn to delete single rows, multiple rows, use WHERE conditions, and understand DELETE vs TRUNCATE.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/machinelearningplus.com\/sql\/sql-delete\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/machinelearningplus.com\/sql\/sql-delete\/#primaryimage","url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-DELETE.png","width":1080,"height":1080,"caption":"SQL DELETE"},{"@type":"WebSite","@id":"https:\/\/machinelearningplus.com\/#website","url":"https:\/\/machinelearningplus.com\/","name":"machinelearningplus","description":"Learn Data Science (AI \/ ML) Online","publisher":{"@id":"https:\/\/machinelearningplus.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/machinelearningplus.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/machinelearningplus.com\/#organization","name":"machinelearningplus","url":"https:\/\/machinelearningplus.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/machinelearningplus.com\/#\/schema\/logo\/image\/","url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2022\/05\/MachineLearningplus-logo.svg","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2022\/05\/MachineLearningplus-logo.svg","width":348,"height":36,"caption":"machinelearningplus"},"image":{"@id":"https:\/\/machinelearningplus.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/machinelearningplus.com\/#\/schema\/person\/b1493170590ee4eb9622bcaea5b3b7da","name":"Jagdeesh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/machinelearningplus.com\/wp-content\/litespeed\/avatar\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391","url":"https:\/\/machinelearningplus.com\/wp-content\/litespeed\/avatar\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/litespeed\/avatar\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1776363391","caption":"Jagdeesh"},"url":"https:\/\/machinelearningplus.com\/author\/jagdeesh\/"}]}},"_links":{"self":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/comments?post=22241"}],"version-history":[{"count":0,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22241\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media\/22277"}],"wp:attachment":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media?parent=22241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/categories?post=22241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/tags?post=22241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}