{"id":22266,"date":"2023-06-09T11:39:06","date_gmt":"2023-06-09T11:39:06","guid":{"rendered":"https:\/\/machinelearningplus.com\/?p=22266"},"modified":"2023-06-10T19:15:01","modified_gmt":"2023-06-10T19:15:01","slug":"sql_in","status":"publish","type":"post","link":"https:\/\/machinelearningplus.com\/sql\/sql_in\/","title":{"rendered":"SQL IN &#8211; SQL IN with Practical Examples"},"content":{"rendered":"<p><strong>Let&#8217;s get a handle on one of its powerful operators, the SQL IN operator. I&#8217;m going to keep this as simple as possible, while still covering everything you need to know.<\/strong><\/p>\n<h2>What is the SQL &#8220;IN&#8221; Operator?<\/h2>\n<p>In SQL, the <code>IN<\/code> operator allows you to specify multiple values in a <code>WHERE<\/code> clause. Essentially, it&#8217;s a shorthand for multiple <code>OR<\/code> conditions. This might not seem like a big deal, but when you&#8217;re dealing with complex databases with many records, this small efficiency can have a huge impact.<\/p>\n<h1>Basic Syntax of SQL IN<\/h1>\n<p>The basic syntax of SQL <code>IN<\/code> is pretty straightforward<\/p>\n<pre><code class=\"language-python\">SELECT column_name(s)\nFROM table_name\nWHERE column_name IN (value1, value2, ...);\n<\/code><\/pre>\n<p>In this syntax, you can see that the <code>IN<\/code> operator is used in the <code>WHERE<\/code> clause to filter the records. The values in the parentheses <strong>(value1, value2, &#8230;)<\/strong> represent the values you&#8217;re interested in.<\/p>\n<h2>A Practical Example of SQL &#8220;IN&#8221;<\/h2>\n<p>Let&#8217;s illustrate the SQL <code>IN<\/code> operator with an example. Suppose you&#8217;re working with a table called <code>Employees<\/code><\/p>\n<pre><code class=\"language-python\">Employee_ID | First_Name | Last_Name | Department\n----------------------------------------------\n1           | John       | Doe       | IT        \n2           | Jane       | Smith     | Marketing \n3           | Sara       | Jones     | HR        \n4           | James      | Davis     | IT        \n5           | Linda      | Taylor    | Sales\n<\/code><\/pre>\n<p>Imagine that you want to find the details of employees who work in either the <strong>&#8216;IT&#8217; or &#8216;Sales&#8217;<\/strong> department. You could certainly use the <code>OR<\/code> operator, like so<\/p>\n<pre><code class=\"language-python\">SELECT *\nFROM Employees\nWHERE Department = 'IT' OR Department = 'Sales';\n<\/code><\/pre>\n<p>However, using the <code>IN<\/code> operator simplifies this query<\/p>\n<pre><code class=\"language-python\">SELECT *\nFROM Employees\nWHERE Department IN ('IT', 'Sales');\n<\/code><\/pre>\n<p>Both of these queries return the same results<\/p>\n<p>Result:<\/p>\n<pre><code class=\"language-python\">Employee_ID | First_Name | Last_Name | Department\n----------------------------------------------\n1           | John       | Doe       | IT        \n4           | James      | Davis     | IT        \n5           | Linda      | Taylor    | Sales\n<\/code><\/pre>\n<p>As you can see, the <code>IN<\/code> operator is not only easier to write but also makes your SQL statement cleaner and easier to read.<\/p>\n<h2>SQL IN with Subquery<\/h2>\n<p>Another way you can use the <code>IN<\/code> operator is with a subquery. A subquery is a SQL query nested inside a larger query. Let&#8217;s say you have another table called <code>Departments<\/code><\/p>\n<pre><code class=\"language-python\">Employees Table:\n\nEmployee_ID | First_Name | Last_Name | Department\n----------------------------------------------\n1           | John       | Doe       | IT        \n2           | Jane       | Smith     | Marketing \n3           | Sara       | Jones     | HR        \n4           | James      | Davis     | IT        \n5           | Linda      | Taylor    | Sales\n\nDepartments Table:\n\nDepartment_ID | Department | Manager\n-------------------------------------\n1             | IT         | John Doe\n2             | Marketing  | Jane Smith\n3             | HR         | Sara Jones\n4             | Sales      | Linda Taylor\n<\/code><\/pre>\n<p>And you want to find all employees who are managers. You could do this using the <code>IN<\/code> operator with a subquery<\/p>\n<pre><code class=\"language-python\">SELECT *\nFROM Employees\nWHERE First_Name + ' ' + Last_Name IN (SELECT Manager FROM Departments);\n<\/code><\/pre>\n<p>Result:<\/p>\n<pre><code class=\"language-python\">Employee_ID | First_Name | Last_Name | Department\n----------------------------------------------\n1           | John       | Doe       | IT        \n2           | Jane       | Smith     | Marketing \n3           | Sara       | Jones     | HR        \n5           | Linda      | Taylor    | Sales\n<\/code><\/pre>\n<p>This query first retrieves the list of managers from the <code>Departments<\/code> table, then uses the <code>IN<\/code> operator to filter the <code>Employees<\/code> table based on that list.<\/p>\n<h2>Conclusion<\/h2>\n<p>That&#8217;s the basic idea behind the SQL <code>IN<\/code> operator. It provides an efficient way to check if a certain column&#8217;s value is in a list of specified values. Its biggest strengths are its readability and its compatibility with subqueries, which are essential when working with large, complex databases.<\/p>\n<h2>Related Topics<\/h2>\n<ul>\n<li>Machine Learning Plus <a href=\"https:\/\/machinelearningplus.com\/sql\/sql-like\/\">SQL Like<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s get a handle on one of its powerful operators, the SQL IN operator. I&#8217;m going to keep this as simple as possible, while still covering everything you need to know. What is the SQL &#8220;IN&#8221; Operator? In SQL, the IN operator allows you to specify multiple values in a WHERE clause. Essentially, it&#8217;s a [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":22283,"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-22266","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 IN - SQL IN with Practical Examples - machinelearningplus<\/title>\n<meta name=\"description\" content=\"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it\" \/>\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_in\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL IN - SQL IN with Practical Examples - machinelearningplus\" \/>\n<meta property=\"og:description\" content=\"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost:8080\/sql\/sql_in\/\" \/>\n<meta property=\"og:site_name\" content=\"machinelearningplus\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-09T11:39:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-10T19:15:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-IN.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_in\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/\"},\"author\":{\"name\":\"Jagdeesh\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/person\\\/b1493170590ee4eb9622bcaea5b3b7da\"},\"headline\":\"SQL IN &#8211; SQL IN with Practical Examples\",\"datePublished\":\"2023-06-09T11:39:06+00:00\",\"dateModified\":\"2023-06-10T19:15:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/\"},\"wordCount\":364,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-IN.png\",\"keywords\":[\"Data Engineering\",\"SQL\"],\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/\",\"url\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/\",\"name\":\"SQL IN - SQL IN with Practical Examples - machinelearningplus\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-IN.png\",\"datePublished\":\"2023-06-09T11:39:06+00:00\",\"dateModified\":\"2023-06-10T19:15:01+00:00\",\"description\":\"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql_in\\\/#primaryimage\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-IN.png\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-IN.png\",\"width\":1080,\"height\":1080,\"caption\":\"SQL IN\"},{\"@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 IN - SQL IN with Practical Examples - machinelearningplus","description":"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it","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_in\/","og_locale":"en_US","og_type":"article","og_title":"SQL IN - SQL IN with Practical Examples - machinelearningplus","og_description":"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it","og_url":"https:\/\/localhost:8080\/sql\/sql_in\/","og_site_name":"machinelearningplus","article_published_time":"2023-06-09T11:39:06+00:00","article_modified_time":"2023-06-10T19:15:01+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-IN.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_in\/#article","isPartOf":{"@id":"https:\/\/localhost:8080\/sql\/sql_in\/"},"author":{"name":"Jagdeesh","@id":"https:\/\/machinelearningplus.com\/#\/schema\/person\/b1493170590ee4eb9622bcaea5b3b7da"},"headline":"SQL IN &#8211; SQL IN with Practical Examples","datePublished":"2023-06-09T11:39:06+00:00","dateModified":"2023-06-10T19:15:01+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql_in\/"},"wordCount":364,"commentCount":0,"publisher":{"@id":"https:\/\/machinelearningplus.com\/#organization"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql_in\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-IN.png","keywords":["Data Engineering","SQL"],"articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost:8080\/sql\/sql_in\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost:8080\/sql\/sql_in\/","url":"https:\/\/localhost:8080\/sql\/sql_in\/","name":"SQL IN - SQL IN with Practical Examples - machinelearningplus","isPartOf":{"@id":"https:\/\/machinelearningplus.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql_in\/#primaryimage"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql_in\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-IN.png","datePublished":"2023-06-09T11:39:06+00:00","dateModified":"2023-06-10T19:15:01+00:00","description":"Get a handle on one of its powerful operators, the SQL IN operator and covering everything you need to know about it","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost:8080\/sql\/sql_in\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/localhost:8080\/sql\/sql_in\/#primaryimage","url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-IN.png","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-IN.png","width":1080,"height":1080,"caption":"SQL IN"},{"@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\/22266","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=22266"}],"version-history":[{"count":0,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22266\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media\/22283"}],"wp:attachment":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media?parent=22266"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/categories?post=22266"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/tags?post=22266"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}