{"id":42191,"date":"2016-11-17T10:34:42","date_gmt":"2016-11-17T05:04:42","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=42191"},"modified":"2024-01-02T17:44:29","modified_gmt":"2024-01-02T12:14:29","slug":"the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/","title":{"rendered":"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2"},"content":{"rendered":"<p>SQL Joins are used to combine documents\/rows from 2 or more tables based upon common field present in them.<\/p>\n<p>MongoDB 3.2 launched the most awaited feature &#8220;Joins&#8221; which is supported in SQL database however was not present in the earlier version of<a title=\"MEAN Stack Development\" href=\"http:\/\/www.tothenew.com\/mean-stack-web-development-consulting\" target=\"_blank\" rel=\"noopener\"> MongoDB<\/a>. This feature will change the way you design your database schema and application using MongoDB.<\/p>\n<p>Now you can run left-outer equi-joins query using $lookup operator in the MongoDB Aggregation Framework. With the help of Joins you can improve your application&#8217;s performance by reducing the number of queries on MongoDB.<\/p>\n<p><strong>What is a Left Outer Equi-Join?<\/strong><\/p>\n<p>Left Outer Equi-Join will have all data from left collection and only matching data from right collection.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"\/blog\/wp-ttn-blog\/uploads\/2024\/01\/image00-9a0e627f57.png\" alt=\"Blog image\" width=\"380\" height=\"285\" \/><\/p>\n<p>$lookup operator performs a left outer join to an unsharded collection in the same database to filter in documents from the \u201cjoined\u201d collection for processing.<\/p>\n<p>The $lookup operator has the following syntax:<\/p>\n<p>[sourcecode language=&#8221;css&#8221;]<br \/>\n{<br \/>\n   $lookup:<br \/>\n     {<br \/>\n       from: &lt;collection to join&gt;,<br \/>\n       localField: &lt;field from the input documents&gt;,<br \/>\n       foreignField: &lt;field from the documents of the &quot;from&quot; collection&gt;,<br \/>\n       as: &lt;output array field&gt;<br \/>\n     }<br \/>\n}<\/p>\n<p>[\/sourcecode]<\/p>\n<p>Let me explain join with an example.<\/p>\n<p><strong>Orders collection:<\/strong><\/p>\n<p>[sourcecode language=&#8221;css&#8221;]<br \/>\n{<br \/>\n    &quot;_id&quot; : 2.0,<br \/>\n    &quot;items&quot; : [<br \/>\n        3.0,<br \/>\n        4.0<br \/>\n    ]<br \/>\n}<\/p>\n<p>[\/sourcecode]<\/p>\n<p><strong>Products collection:<\/strong><\/p>\n<p>[sourcecode language=&#8221;css&#8221;]<br \/>\n{<br \/>\n    &quot;_id&quot; : 3.0,<br \/>\n    &quot;item_name&quot; : &quot;Desi Ghee&quot;,<br \/>\n    &quot;item_price&quot; : 500.0,<br \/>\n    &quot;quantity&quot; : &quot;2 kg&quot;<br \/>\n}<\/p>\n<p>{<br \/>\n    &quot;_id&quot; : 4.0,<br \/>\n    &quot;item_name&quot; : &quot;Namkeen&quot;,<br \/>\n    &quot;item_price&quot; : 50.0,<br \/>\n    &quot;quantity&quot; : &quot;1 pkt&quot;<br \/>\n}<\/p>\n<p>[\/sourcecode]<\/p>\n<p>$lookup can be used in conjunction with other pipeline operators in aggregation framework to make a lookup into cross collection ( i,e left outer joins).<\/p>\n<p>Below Query will first <a title=\"$unwind\" href=\"https:\/\/docs.mongodb.com\/v3.2\/reference\/operator\/aggregation\/unwind\/\">unwind<\/a> the items presents in order collection and make a join with products collection by checking items equals to _id .<\/p>\n<p>[sourcecode language=&#8221;css&#8221;]<br \/>\ndb.orders.aggregate([<br \/>\n    {<br \/>\n      $unwind: &quot;$items&quot;<br \/>\n   },<br \/>\n    {<br \/>\n      $lookup:<br \/>\n        {<br \/>\n          from: &quot;products&quot;,<br \/>\n          localField: &quot;items&quot;,<br \/>\n          foreignField: &quot;_id&quot;,<br \/>\n          as: &quot;embeddedData&quot;<br \/>\n        }<br \/>\n   }<br \/>\n])<\/p>\n<p>[\/sourcecode]<\/p>\n<p><strong>The output of above MongoDB query is:<\/strong><\/p>\n<p>[sourcecode language=&#8221;css&#8221;]<br \/>\n\/* 1 *\/<br \/>\n{<br \/>\n    &quot;_id&quot; : 2.0,<br \/>\n    &quot;items&quot; : 3.0,<br \/>\n    &quot;products&quot; : [<br \/>\n        {<br \/>\n            &quot;_id&quot; : 3.0,<br \/>\n            &quot;item_name&quot; : &quot;Desi Ghee&quot;,<br \/>\n            &quot;item_price&quot; : 500.0,<br \/>\n            &quot;quantity&quot; : &quot;2 kg&quot;<br \/>\n        }<br \/>\n    ]<br \/>\n}<\/p>\n<p>\/* 2 *\/<br \/>\n{<br \/>\n    &quot;_id&quot; : 2.0,<br \/>\n    &quot;items&quot; : 4.0,<br \/>\n    &quot;products&quot; : [<br \/>\n        {<br \/>\n            &quot;_id&quot; : 4.0,<br \/>\n            &quot;item_name&quot; : &quot;Namkeen&quot;,<br \/>\n            &quot;item_price&quot; : 50.0,<br \/>\n            &quot;quantity&quot; : &quot;1 pkt&quot;<br \/>\n        }<br \/>\n    ]<br \/>\n}<\/p>\n<p>[\/sourcecode]<\/p>\n<p>I hope this is helpful.<\/p>\n<p>For more details check &#8211; https:\/\/docs.mongodb.com\/v3.2\/reference\/operator\/aggregation\/lookup\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQL Joins are used to combine documents\/rows from 2 or more tables based upon common field present in them. MongoDB 3.2 launched the most awaited feature &#8220;Joins&#8221; which is supported in SQL database however was not present in the earlier version of MongoDB. This feature will change the way you design your database schema and [&hellip;]<\/p>\n","protected":false},"author":943,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3,"footnotes":""},"categories":[1],"tags":[4843,3781,1596,1900,1252,2683,558],"class_list":["post-42191","post","type-post","status-publish","format-standard","hentry","category-technology","tag-database","tag-mean","tag-mongo","tag-mongo-db","tag-nosql","tag-performance","tag-sql"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"This blog explains about what a SQL join is and different ways of using it.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Pawan Kumar Goyal\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"This blog explains about what a SQL join is and different ways of using it.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This blog explains about what a SQL join is and different ways of using it.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#article\",\"name\":\"The Most Awaited Feature \\u201cSQL Joins\\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog\",\"headline\":\"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pawan-goyal\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2024\\\/01\\\/image00-9a0e627f57.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#articleImage\"},\"datePublished\":\"2016-11-17T10:34:42+05:30\",\"dateModified\":\"2024-01-02T17:44:29+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#webpage\"},\"articleSection\":\"Technology, Database, mean, mongo, Mongo DB, NoSQL, performance, SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#listItem\",\"name\":\"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#listItem\",\"position\":3,\"name\":\"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pawan-goyal\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pawan-goyal\\\/\",\"name\":\"Pawan Kumar Goyal\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/1ac85c1f-caa4-4067-a532-5dd7b0800c46_pawan.goyal@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Pawan Kumar Goyal\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/\",\"name\":\"The Most Awaited Feature \\u201cSQL Joins\\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog\",\"description\":\"This blog explains about what a SQL join is and different ways of using it.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pawan-goyal\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/pawan-goyal\\\/#author\"},\"datePublished\":\"2016-11-17T10:34:42+05:30\",\"dateModified\":\"2024-01-02T17:44:29+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog","description":"This blog explains about what a SQL join is and different ways of using it.","canonical_url":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#article","name":"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog","headline":"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/pawan-goyal\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2024\/01\/image00-9a0e627f57.png","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#articleImage"},"datePublished":"2016-11-17T10:34:42+05:30","dateModified":"2024-01-02T17:44:29+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#webpage"},"articleSection":"Technology, Database, mean, mongo, Mongo DB, NoSQL, performance, SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#listItem","name":"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#listItem","position":3,"name":"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/pawan-goyal\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/pawan-goyal\/","name":"Pawan Kumar Goyal","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/1ac85c1f-caa4-4067-a532-5dd7b0800c46_pawan.goyal@tothenew.com.jpg","width":96,"height":96,"caption":"Pawan Kumar Goyal"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/","name":"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog","description":"This blog explains about what a SQL join is and different ways of using it.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/pawan-goyal\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/pawan-goyal\/#author"},"datePublished":"2016-11-17T10:34:42+05:30","dateModified":"2024-01-02T17:44:29+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog","og:description":"This blog explains about what a SQL join is and different ways of using it.","og:url":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"The Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2 | TO THE NEW Blog","twitter:description":"This blog explains about what a SQL join is and different ways of using it.","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"42191","title":null,"description":"This blog explains about what a SQL join is and different ways of using it.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:53:34","updated":"2024-02-29 08:55:01","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tThe Most Awaited Feature \u201cSQL Joins\u201d is Now Available in MongoDB 3.2\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"The Most Awaited Feature &#8220;SQL Joins&#8221; is Now Available in MongoDB 3.2","link":"https:\/\/www.tothenew.com\/blog\/the-most-awaited-feature-sql-joins-is-now-available-in-mongodb-3-2\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/42191","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/943"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=42191"}],"version-history":[{"count":1,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/42191\/revisions"}],"predecessor-version":[{"id":59820,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/42191\/revisions\/59820"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=42191"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=42191"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=42191"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}