{"id":2915,"date":"2026-05-07T10:13:50","date_gmt":"2026-05-07T02:13:50","guid":{"rendered":"https:\/\/tekno.bali-island.com\/?p=2915"},"modified":"2026-05-07T10:13:51","modified_gmt":"2026-05-07T02:13:51","slug":"understanding-the-concept-of-join-in-sql-databases","status":"publish","type":"post","link":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/","title":{"rendered":"Understanding the Concept of JOIN in SQL Databases"},"content":{"rendered":"\n<p><strong>JOIN<\/strong> in SQL is a clause used to combine rows from two or more tables based on a related column between them. Its main purpose is to obtain a single dataset with complete and comprehensive information. &#8220;Complete&#8221; here refers to the data structure resulting from the combination of columns from the related tables.<\/p>\n\n\n\n<p>To meet various data retrieval needs, the JOIN command is divided into several types: <strong>OUTER JOIN<\/strong>, <strong>INNER JOIN<\/strong>, <strong>RIGHT JOIN<\/strong>, and <strong>LEFT JOIN<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Differences Between SQL JOIN Types<\/strong><\/h2>\n\n\n\n<p>Below is an explanation of various JOIN clauses along with example syntax to help you understand their differences:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. FULL OUTER JOIN<\/strong><\/h3>\n\n\n\n<p>Outer join (or Full Outer Join) returns all records or rows, whether they have matching values or not, from both tables being joined. If there is no matching data between the two tables, the missing side is automatically filled with NULL values in the join result.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>SQL<\/p>\n\n\n\n<p>SELECT column_name(s)<\/p>\n\n\n\n<p>FROM table1<\/p>\n\n\n\n<p>FULL OUTER JOIN table2<\/p>\n\n\n\n<p>ON table1.column_name = table2.column_name<\/p>\n\n\n\n<p>WHERE condition;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. LEFT JOIN<\/strong><\/h3>\n\n\n\n<p>Left Join is an operation that returns all records from the left table (the first table) of the two joined tables. All data from the left table is retained and displayed, even if the values in the left table do not match any data in the right table (the second table). Data in the right table that has no match is replaced with NULL.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>SQL<\/p>\n\n\n\n<p>SELECT column_name(s)<\/p>\n\n\n\n<p>FROM table1<\/p>\n\n\n\n<p>LEFT JOIN table2<\/p>\n\n\n\n<p>ON table1.column_name = table2.column_name;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. RIGHT JOIN (Complement)<\/strong><\/h3>\n\n\n\n<p>As the opposite of Left Join, the Right Join clause returns all records from the right table (the second table), along with matching data from the left table. If there is no matching data in the left table, the result from the left side will be NULL.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>SQL<\/p>\n\n\n\n<p>SELECT column_name(s)<\/p>\n\n\n\n<p>FROM table1<\/p>\n\n\n\n<p>RIGHT JOIN table2<\/p>\n\n\n\n<p>ON table1.column_name = table2.column_name;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. INNER JOIN (Complement)<\/strong><\/h3>\n\n\n\n<p>Inner Join is the most frequently used clause. Unlike Outer Join, Inner Join works more strictly by returning only rows that have matching data (the intersection) in both joined tables.<\/p>\n\n\n\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>SQL<\/p>\n\n\n\n<p>SELECT column_name(s)<\/p>\n\n\n\n<p>FROM table1<\/p>\n\n\n\n<p>INNER JOIN table2<\/p>\n\n\n\n<p>ON table1.column_name = table2.column_name;<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JOIN in SQL is a clause used to combine rows from two or more tables based on a related column between them. Its main purpose is to obtain a single dataset with complete and comprehensive information. &#8220;Complete&#8221; here refers to the data structure resulting from the combination of columns from the related tables. To meet various data retrieval needs, the JOIN command is divided into several types: OUTER JOIN, INNER JOIN, RIGHT JOIN, and LEFT JOIN. Differences Between SQL JOIN Types Below is an explanation of various JOIN clauses along with example syntax to help you understand their differences: 1. FULL OUTER JOIN Outer join (or Full Outer Join) returns all records or rows, whether they have matching values or not, from both tables being joined. If there is no matching data between the two tables, the missing side is automatically filled with NULL values in the join result. Syntax: SQL SELECT column_name(s) FROM table1 FULL OUTER JOIN table2 ON table1.column_name = table2.column_name WHERE condition; 2. LEFT JOIN Left Join is an operation that returns all records from the left table (the first table) of the two joined tables. All data from the left table is retained and displayed, even &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2906,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[93],"tags":[],"class_list":["post-2915","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding the Concept of JOIN in SQL Databases<\/title>\n<meta name=\"description\" content=\"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding the Concept of JOIN in SQL Databases\" \/>\n<meta property=\"og:description\" content=\"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/\" \/>\n<meta property=\"og:site_name\" content=\"Bali Island Tekno\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-07T02:13:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-07T02:13:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1284\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Wilan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Wilan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/\"},\"author\":{\"name\":\"Wilan\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/person\\\/945426dbaeb9dc9d603797b51b1b7e42\"},\"headline\":\"Understanding the Concept of JOIN in SQL Databases\",\"datePublished\":\"2026-05-07T02:13:50+00:00\",\"dateModified\":\"2026-05-07T02:13:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/\"},\"wordCount\":380,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Join-SQL-scaled.webp\",\"articleSection\":[\"Programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/\",\"name\":\"Understanding the Concept of JOIN in SQL Databases\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Join-SQL-scaled.webp\",\"datePublished\":\"2026-05-07T02:13:50+00:00\",\"dateModified\":\"2026-05-07T02:13:51+00:00\",\"description\":\"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#primaryimage\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Join-SQL-scaled.webp\",\"contentUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Join-SQL-scaled.webp\",\"width\":2560,\"height\":1284,\"caption\":\"Join SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/understanding-the-concept-of-join-in-sql-databases\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding the Concept of JOIN in SQL Databases\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\",\"name\":\"Bali Island Tekno\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\",\"name\":\"Bali Island Tekno\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Logo-Tekno-Bali-Island.webp\",\"contentUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/Logo-Tekno-Bali-Island.webp\",\"width\":512,\"height\":512,\"caption\":\"Bali Island Tekno\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/Wilanpedia\\\/61575048527927\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/person\\\/945426dbaeb9dc9d603797b51b1b7e42\",\"name\":\"Wilan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g\",\"caption\":\"Wilan\"},\"sameAs\":[\"https:\\\/\\\/tekno.bali-island.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding the Concept of JOIN in SQL Databases","description":"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.","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:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/","og_locale":"en_US","og_type":"article","og_title":"Understanding the Concept of JOIN in SQL Databases","og_description":"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.","og_url":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/","og_site_name":"Bali Island Tekno","article_publisher":"https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/","article_published_time":"2026-05-07T02:13:50+00:00","article_modified_time":"2026-05-07T02:13:51+00:00","og_image":[{"width":2560,"height":1284,"url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp","type":"image\/webp"}],"author":"Wilan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Wilan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#article","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/"},"author":{"name":"Wilan","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/person\/945426dbaeb9dc9d603797b51b1b7e42"},"headline":"Understanding the Concept of JOIN in SQL Databases","datePublished":"2026-05-07T02:13:50+00:00","dateModified":"2026-05-07T02:13:51+00:00","mainEntityOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/"},"wordCount":380,"commentCount":0,"publisher":{"@id":"https:\/\/tekno.bali-island.com\/en\/#organization"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp","articleSection":["Programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/","url":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/","name":"Understanding the Concept of JOIN in SQL Databases","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#primaryimage"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp","datePublished":"2026-05-07T02:13:50+00:00","dateModified":"2026-05-07T02:13:51+00:00","description":"Learn JOIN clauses and syntax for INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN for data management.","breadcrumb":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#primaryimage","url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp","contentUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/Join-SQL-scaled.webp","width":2560,"height":1284,"caption":"Join SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/understanding-the-concept-of-join-in-sql-databases\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tekno.bali-island.com\/en\/"},{"@type":"ListItem","position":2,"name":"Understanding the Concept of JOIN in SQL Databases"}]},{"@type":"WebSite","@id":"https:\/\/tekno.bali-island.com\/en\/#website","url":"https:\/\/tekno.bali-island.com\/en\/","name":"Bali Island Tekno","description":"","publisher":{"@id":"https:\/\/tekno.bali-island.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tekno.bali-island.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tekno.bali-island.com\/en\/#organization","name":"Bali Island Tekno","url":"https:\/\/tekno.bali-island.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Logo-Tekno-Bali-Island.webp","contentUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/04\/Logo-Tekno-Bali-Island.webp","width":512,"height":512,"caption":"Bali Island Tekno"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/"]},{"@type":"Person","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/person\/945426dbaeb9dc9d603797b51b1b7e42","name":"Wilan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b88f244258181b0b6313e5bf915a4aa9f133283d33124cb16947eb1389dc4bc5?s=96&d=mm&r=g","caption":"Wilan"},"sameAs":["https:\/\/tekno.bali-island.com"]}]}},"_links":{"self":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2915","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/comments?post=2915"}],"version-history":[{"count":1,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2915\/revisions"}],"predecessor-version":[{"id":2916,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2915\/revisions\/2916"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media\/2906"}],"wp:attachment":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media?parent=2915"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/categories?post=2915"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/tags?post=2915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}