{"id":22251,"date":"2023-06-08T16:53:31","date_gmt":"2023-06-08T16:53:31","guid":{"rendered":"https:\/\/machinelearningplus.com\/?p=22251"},"modified":"2023-06-10T07:46:26","modified_gmt":"2023-06-10T07:46:26","slug":"sql-min-and-max","status":"publish","type":"post","link":"https:\/\/machinelearningplus.com\/sql\/sql-min-and-max\/","title":{"rendered":"SQL MIN and MAX Functions &#8211; Unleashing Your Data&#8217;s Extremes"},"content":{"rendered":"<p><strong>Let&#8217;s dive into the world of SQL (Structured Query Language) to explore two incredibly valuable aggregate functions: MIN() and MAX().<\/strong><\/p>\n<p>These functions allow you to discover the smallest and largest values in a particular column of your data set, respectively. Understanding and properly leveraging these functions can be a game-changer when dealing with massive datasets and performing comprehensive data analyses.<\/p>\n<h2>SQL: A Quick Recap<\/h2>\n<p>SQL, for those unfamiliar, is a standardized programming language that is used to manage and manipulate databases. It allows you to query, insert, update, and modify data in a relational database management system (RDBMS), like MySQL, PostgreSQL, Oracle, or SQLite.<\/p>\n<h2>Understanding MIN() and MAX() Functions<\/h2>\n<p>Now, onto the main topic. MIN() and MAX() are two built-in functions in SQL that allow you to quickly find the smallest and largest values in a column of a table. They are particularly useful when you need to identify the extremes in your data.<\/p>\n<p>Here is the basic syntax of both functions<\/p>\n<pre><code class=\"language-python\">SELECT MIN(column_name) FROM table_name;\nSELECT MAX(column_name) FROM table_name;\n<\/code><\/pre>\n<p>Note: You can replace column_name and table_name with the column and the table from your database that you wish to query.<\/p>\n<h2>A Sample Dataset<\/h2>\n<p>To illustrate these functions in action, let&#8217;s take a look at a sample data set. Assume we have a table called &#8220;Products&#8221;, with the following data:<\/p>\n<pre><code class=\"language-python\">CREATE TABLE Products (\n    ProductID INT,\n    ProductName VARCHAR(255),\n    Price INT\n);\n\nINSERT INTO Products (ProductID, ProductName, Price)\nVALUES \n    (1, 'Chair', 45),\n    (2, 'Table', 80),\n    (3, 'Desk', 120),\n    (4, 'Lamp', 30),\n    (5, 'Bookshelf', 100);\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-python\">ProductID   ProductName   Price\n---------   -----------   -----\n1           Chair         45\n2           Table         80\n3           Desk          120\n4           Lamp          30\n5           Bookshelf     100\n<\/code><\/pre>\n<h2>1) Using the MIN() Function<\/h2>\n<p>Let&#8217;s say we want to find the product with the lowest price. We would use the MIN() function, applied to the &#8220;Price&#8221; column:<\/p>\n<pre><code class=\"language-python\">SELECT MIN(Price) AS LowestPrice FROM Products;\n<\/code><\/pre>\n<p>The <code>AS<\/code> keyword is used to rename the output column as <strong>&#8220;LowestPrice&#8221;<\/strong>. The output of this query would be<\/p>\n<pre><code class=\"language-python\">LowestPrice\n-----------\n30\n<\/code><\/pre>\n<h2>2) Finding the maximum price<\/h2>\n<p>Similarly, if we want to find the product with the highest price, we would use the MAX() function<\/p>\n<pre><code class=\"language-python\">SELECT MAX(Price) AS HighestPrice FROM Products;\n<\/code><\/pre>\n<p>The output of this query would be<\/p>\n<pre><code class=\"language-python\">HighestPrice\n------------\n120\n<\/code><\/pre>\n<h2>3) Going Beyond<\/h2>\n<p>We can even combine the MIN() and MAX() functions with other SQL commands.<\/p>\n<p>For example, if we want to find the names of the cheapest and most expensive products, we can combine the MIN() and MAX() functions with the WHERE clause<\/p>\n<pre><code class=\"language-python\">SELECT ProductName, Price FROM Products WHERE Price = (SELECT MIN(Price) FROM Products);\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-python\">ProductName    Price\n----------    ------\nLamp           30\n<\/code><\/pre>\n<pre><code class=\"language-python\">SELECT ProductName, Price FROM Products WHERE Price = (SELECT MAX(Price) FROM Products);\n<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code class=\"language-python\">ProductName    Price\n----------    ------\nDesk           120\n<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>The MIN() and MAX() functions are powerful tools for quickly identifying the smallest and largest values in a data set. They are simple yet effective, and a necessary addition to your SQL toolkit.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s dive into the world of SQL (Structured Query Language) to explore two incredibly valuable aggregate functions: MIN() and MAX(). These functions allow you to discover the smallest and largest values in a particular column of your data set, respectively. Understanding and properly leveraging these functions can be a game-changer when dealing with massive datasets [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":22279,"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-22251","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 v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SQL MIN and MAX Functions - Unleashing Your Data&#039;s Extremes - machinelearningplus<\/title>\n<meta name=\"description\" content=\"Explore two incredibly valuable aggregate functions: MIN() and MAX().\" \/>\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-min-and-max\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL MIN and MAX Functions - Unleashing Your Data&#039;s Extremes - machinelearningplus\" \/>\n<meta property=\"og:description\" content=\"Explore two incredibly valuable aggregate functions: MIN() and MAX().\" \/>\n<meta property=\"og:url\" content=\"https:\/\/localhost:8080\/sql\/sql-min-and-max\/\" \/>\n<meta property=\"og:site_name\" content=\"machinelearningplus\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-08T16:53:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-10T07:46:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.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-min-and-max\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/\"},\"author\":{\"name\":\"Jagdeesh\",\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#\\\/schema\\\/person\\\/b1493170590ee4eb9622bcaea5b3b7da\"},\"headline\":\"SQL MIN and MAX Functions &#8211; Unleashing Your Data&#8217;s Extremes\",\"datePublished\":\"2023-06-08T16:53:31+00:00\",\"dateModified\":\"2023-06-10T07:46:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/\"},\"wordCount\":382,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-MIN-and-MAX-Functions.png\",\"keywords\":[\"Data Engineering\",\"SQL\"],\"articleSection\":[\"SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/\",\"url\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/\",\"name\":\"SQL MIN and MAX Functions - Unleashing Your Data's Extremes - machinelearningplus\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/machinelearningplus.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-MIN-and-MAX-Functions.png\",\"datePublished\":\"2023-06-08T16:53:31+00:00\",\"dateModified\":\"2023-06-10T07:46:26+00:00\",\"description\":\"Explore two incredibly valuable aggregate functions: MIN() and MAX().\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/localhost:8080\\\/sql\\\/sql-min-and-max\\\/#primaryimage\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-MIN-and-MAX-Functions.png\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/SQL-MIN-and-MAX-Functions.png\",\"width\":1080,\"height\":1080},{\"@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=1783623298\",\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1783623298\",\"contentUrl\":\"https:\\\/\\\/machinelearningplus.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1783623298\",\"caption\":\"Jagdeesh\"},\"url\":\"https:\\\/\\\/machinelearningplus.com\\\/author\\\/jagdeesh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SQL MIN and MAX Functions - Unleashing Your Data's Extremes - machinelearningplus","description":"Explore two incredibly valuable aggregate functions: MIN() and MAX().","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-min-and-max\/","og_locale":"en_US","og_type":"article","og_title":"SQL MIN and MAX Functions - Unleashing Your Data's Extremes - machinelearningplus","og_description":"Explore two incredibly valuable aggregate functions: MIN() and MAX().","og_url":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/","og_site_name":"machinelearningplus","article_published_time":"2023-06-08T16:53:31+00:00","article_modified_time":"2023-06-10T07:46:26+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/localhost:8080\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.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-min-and-max\/#article","isPartOf":{"@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/"},"author":{"name":"Jagdeesh","@id":"https:\/\/machinelearningplus.com\/#\/schema\/person\/b1493170590ee4eb9622bcaea5b3b7da"},"headline":"SQL MIN and MAX Functions &#8211; Unleashing Your Data&#8217;s Extremes","datePublished":"2023-06-08T16:53:31+00:00","dateModified":"2023-06-10T07:46:26+00:00","mainEntityOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/"},"wordCount":382,"commentCount":0,"publisher":{"@id":"https:\/\/machinelearningplus.com\/#organization"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.png","keywords":["Data Engineering","SQL"],"articleSection":["SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/localhost:8080\/sql\/sql-min-and-max\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/","url":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/","name":"SQL MIN and MAX Functions - Unleashing Your Data's Extremes - machinelearningplus","isPartOf":{"@id":"https:\/\/machinelearningplus.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/#primaryimage"},"image":{"@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/#primaryimage"},"thumbnailUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.png","datePublished":"2023-06-08T16:53:31+00:00","dateModified":"2023-06-10T07:46:26+00:00","description":"Explore two incredibly valuable aggregate functions: MIN() and MAX().","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/localhost:8080\/sql\/sql-min-and-max\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/localhost:8080\/sql\/sql-min-and-max\/#primaryimage","url":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.png","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/uploads\/2023\/06\/SQL-MIN-and-MAX-Functions.png","width":1080,"height":1080},{"@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=1783623298","url":"https:\/\/machinelearningplus.com\/wp-content\/litespeed\/avatar\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1783623298","contentUrl":"https:\/\/machinelearningplus.com\/wp-content\/litespeed\/avatar\/8a303ceb6bbccb62c3dbc14787297f84.jpg?ver=1783623298","caption":"Jagdeesh"},"url":"https:\/\/machinelearningplus.com\/author\/jagdeesh\/"}]}},"_links":{"self":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22251","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=22251"}],"version-history":[{"count":0,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/posts\/22251\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media\/22279"}],"wp:attachment":[{"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/media?parent=22251"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/categories?post=22251"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/machinelearningplus.com\/wp-json\/wp\/v2\/tags?post=22251"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}