{"id":22238,"date":"2023-06-08T10:43:52","date_gmt":"2023-06-08T10:43:52","guid":{"rendered":"https:\/\/machinelearningplus.com\/?p=22238"},"modified":"2023-06-10T07:35:28","modified_gmt":"2023-06-10T07:35:28","slug":"sql-update","status":"publish","type":"post","link":"https:\/\/machinelearningplus.com\/sql\/sql-update\/","title":{"rendered":"SQL Update &#8211; Mastering SQL Update with Examples"},"content":{"rendered":"<p><strong>Let&#8217;s dive deep into one of the most commonly used SQL commands &#8211; UPDATE. The UPDATE statement is used to modify existing records in a table and is a crucial part of database management and maintenance.<\/strong><\/p>\n<h2>SQL UPDATE Syntax<\/h2>\n<p>The basic syntax for the <code>SQL UPDATE<\/code> command is as follows<\/p>\n<pre><code class=\"language-python\">UPDATE table_name\nSET column1 = value1, column2 = value2, ...\nWHERE condition;\n<\/code><\/pre>\n<p>Now, let&#8217;s look at a few practical examples.<\/p>\n<h2>SQL UPDATE in Action<\/h2>\n<h2>Sample Data<\/h2>\n<p>For our examples, let&#8217;s use a simple table named <code>Employees<\/code><\/p>\n<pre><code class=\"language-python\">CREATE TABLE Employees (\n    EmpID INT,\n    EmpName VARCHAR(50),\n    EmpEmail VARCHAR(50),\n    Salary FLOAT,\n    Department VARCHAR(30)\n);\n<\/code><\/pre>\n<p>And we&#8217;ll insert some data<\/p>\n<pre><code class=\"language-python\">INSERT INTO Employees (EmpID, EmpName, EmpEmail, Salary, Department)\nVALUES \n    (1, 'John Doe', 'jdoe@example.com', 50000, 'HR'),\n    (2, 'Jane Smith', 'jsmith@example.com', 60000, 'IT'),\n    (3, 'Bob Johnson', 'bjohnson@example.com', 70000, 'Sales'),\n    (4, 'Alice Williams', 'awilliams@example.com', 55000, 'HR');\n<\/code><\/pre>\n<p>Our <code>Employees<\/code> table now looks like this<\/p>\n<pre><code class=\"language-python\">EmpID | EmpName       | EmpEmail             | Salary | Department\n------|---------------|----------------------|--------|------------\n1     | John Doe      | jdoe@example.com     | 50000  | HR\n2     | Jane Smith    | jsmith@example.com   | 60000  | IT\n3     | Bob Johnson   | bjohnson@example.com | 70000  | Sales\n4     | Alice Williams| awilliams@example.com| 55000  | HR\n<\/code><\/pre>\n<h2>1) Basic UPDATE<\/h2>\n<p>Jane Smith from the IT department has been given a raise, and her new salary is 65000.<\/p>\n<p>Here&#8217;s how we would update her record<\/p>\n<pre><code class=\"language-python\">UPDATE Employees\nSET Salary = 65000\nWHERE EmpID = 2;\n<\/code><\/pre>\n<p>Jane&#8217;s record in the <code>Employees<\/code> table would now be<\/p>\n<pre><code class=\"language-python\">EmpID | EmpName   | EmpEmail           | Salary | Department\n------|-----------|--------------------|--------|------------\n2     | Jane Smith| jsmith@example.com | 65000  | IT\n<\/code><\/pre>\n<h2>2) Updating Multiple Columns<\/h2>\n<p>Alice Williams has been promoted and moved to the IT department with a new salary of 70000.<\/p>\n<p>We can update her record like this<\/p>\n<pre><code class=\"language-python\">UPDATE Employees\nSET Salary = 70000, Department = 'IT'\nWHERE EmpID = 4;\n<\/code><\/pre>\n<p>Alice&#8217;s updated record<\/p>\n<pre><code class=\"language-python\">EmpID | EmpName      | EmpEmail              | Salary | Department\n------|--------------|-----------------------|--------|------------\n4     | Alice Williams | awilliams@example.com | 70000  | IT\n<\/code><\/pre>\n<h2>3) UPDATE With a Subquery<\/h2>\n<p>Suppose the company decides to give a 10% raise to everyone in the HR department.<\/p>\n<p>Instead of updating each record individually, we can use a subquery<\/p>\n<pre><code class=\"language-python\">UPDATE Employees\nSET Salary = Salary * 1.1\nWHERE Department = 'HR';\n<\/code><\/pre>\n<p>The updated <code>Employees<\/code> table<\/p>\n<pre><code class=\"language-python\">EmpID | EmpName       | EmpEmail             | Salary | Department\n------|---------------|----------------------|--------|------------\n1     | John Doe      | jdoe@example.com     | 55000  | HR\n2     | Jane Smith    | jsmith@example.com   | 65000  | IT\n3     | Bob Johnson   | bjohnson@example.com | 70000  | Sales\n4     | Alice Williams| awilliams@example.com| 70000  | IT\n<\/code><\/pre>\n<h2>Key Takeaways<\/h2>\n<p>Remember the following points when working with SQL <code>UPDATE<\/code>:<\/p>\n<p>Always ensure you use a <code>WHERE<\/code> clause with your <code>UPDATE<\/code> statement.<br \/>\n&#8211; If you don&#8217;t, you&#8217;ll update all rows in the table.<br \/>\n&#8211; Be careful when using subqueries. They&#8217;re powerful but can also be tricky.<br \/>\n&#8211; Always backup your data before running an <code>UPDATE<\/code> statement. This will protect you from unintended changes.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s dive deep into one of the most commonly used SQL commands &#8211; UPDATE. The UPDATE statement is used to modify existing records in a table and is a crucial part of database management and maintenance. SQL UPDATE Syntax The basic syntax for the SQL UPDATE command is as follows UPDATE table_name SET column1 = [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":22275,"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-22238","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 Update - Mastering SQL Update with Examples - machinelearningplus<\/title>\n<meta name=\"description\" content=\"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/localhost:8080\/sql\/sql-update\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Update - Mastering SQL Update with Examples - machinelearningplus\" \/>\n<meta property=\"og:description\" content=\"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost:8080\/sql\/sql-update\/\" \/>\n<meta property=\"og:site_name\" content=\"machinelearningplus\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-08T10:43:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-10T07:35:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-Update.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:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/\"},\"author\":{\"name\":\"Jagdeesh\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/person\\\/b1493170590ee4eb9622bcaea5b3b7da\"},\"headline\":\"SQL Update &#8211; Mastering SQL Update with Examples\",\"datePublished\":\"2023-06-08T10:43:52+00:00\",\"dateModified\":\"2023-06-10T07:35:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/\"},\"wordCount\":253,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-Update.png\",\"keywords\":[\"Data Engineering\",\"SQL\"],\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/\",\"url\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/\",\"name\":\"SQL Update - Mastering SQL Update with Examples - machinelearningplus\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-Update.png\",\"datePublished\":\"2023-06-08T10:43:52+00:00\",\"dateModified\":\"2023-06-10T07:35:28+00:00\",\"description\":\"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-update\\\/#primaryimage\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-Update.png\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-Update.png\",\"width\":1080,\"height\":1080,\"caption\":\"SQL Update\"},{\"@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 Update - Mastering SQL Update with Examples - machinelearningplus","description":"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.","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:\/\/localhost:8080\/sql\/sql-update\/","og_locale":"en_US","og_type":"article","og_title":"SQL Update - Mastering SQL Update with Examples - machinelearningplus","og_description":"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.","og_url":"https:\/\/localhost:8080\/sql\/sql-update\/","og_site_name":"machinelearningplus","article_published_time":"2023-06-08T10:43:52+00:00","article_modified_time":"2023-06-10T07:35:28+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-Update.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:\/\/localhost:8080\/sql\/sql-update\/#article","isPartOf":{"@id":"https:\/\/localhost:8080\/sql\/sql-update\/"},"author":{"name":"Jagdeesh","@id":"https:\/\/machinelearningplus.com\/#\/schema\/person\/b1493170590ee4eb9622bcaea5b3b7da"},"headline":"SQL Update &#8211; Mastering SQL Update with Examples","datePublished":"2023-06-08T10:43:52+00:00","dateModified":"2023-06-10T07:35:28+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql-update\/"},"wordCount":253,"commentCount":0,"publisher":{"@id":"https:\/\/machinelearningplus.com\/#organization"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql-update\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-Update.png","keywords":["Data Engineering","SQL"],"articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost:8080\/sql\/sql-update\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost:8080\/sql\/sql-update\/","url":"https:\/\/localhost:8080\/sql\/sql-update\/","name":"SQL Update - Mastering SQL Update with Examples - machinelearningplus","isPartOf":{"@id":"https:\/\/machinelearningplus.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql-update\/#primaryimage"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql-update\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-Update.png","datePublished":"2023-06-08T10:43:52+00:00","dateModified":"2023-06-10T07:35:28+00:00","description":"Dive deep into one of the most commonly used SQL commands - UPDATE. It is used to modify existing records in a table and is a crucial part of database management and maintenance.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost:8080\/sql\/sql-update\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/localhost:8080\/sql\/sql-update\/#primaryimage","url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-Update.png","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-Update.png","width":1080,"height":1080,"caption":"SQL Update"},{"@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\/22238","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=22238"}],"version-history":[{"count":0,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22238\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media\/22275"}],"wp:attachment":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media?parent=22238"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/categories?post=22238"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/tags?post=22238"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}