{"id":57363,"date":"2023-08-16T15:01:19","date_gmt":"2023-08-16T09:31:19","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=57363"},"modified":"2023-09-06T15:04:40","modified_gmt":"2023-09-06T09:34:40","slug":"how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/","title":{"rendered":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module"},"content":{"rendered":"<p>If you&#8217;re building a Drupal 10 website, you&#8217;ll probably need to work with a database at some point. Whether you&#8217;re retrieving data from the database or making changes, you&#8217;ll need to use SQL queries. In this blog post, we&#8217;ll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.<\/p>\n<p>An insert query adds new data to a database table. Here&#8217;s an example of an insert query in Drupal 10:<\/p>\n<pre>$query = \\Drupal::database()-&gt;insert('ttn_mysql_table');\r\n$query-&gt;fields([ 'name' =&gt; 'Rajveer', 'age' =&gt; 30,]);\r\n$query-&gt;execute();\r\n\r\n\r\n<\/pre>\n<h4>Update Query<\/h4>\n<p>An update query changes data in an existing database table. Here&#8217;s an example of an update query in Drupal 10:<\/p>\n<pre>$query = \\Drupal::database()-&gt;update('ttn_mysql_table');\r\n$query-&gt;fields([\r\n'age' =&gt; 31,\r\n]);\r\n$query-&gt;condition('name', 'Rajveer');\r\n$query-&gt;execute();<\/pre>\n<h4>Delete Query<\/h4>\n<p>A delete query removes data from a database table. Here&#8217;s an example of a delete query in Drupal 10:<\/p>\n<div class=\"bg-black rounded-md mb-4\">\n<pre class=\"flex items-center relative text-gray-200 bg-gray-800 px-4 py-2 text-xs font-sans justify-between rounded-t-md\">$query = \\Drupal::database()-&gt;delete('ttn_mysql_table');\r\n$query-&gt;condition('age', 30);\r\n$query-&gt;execute();<\/pre>\n<\/div>\n<div>\n<h4>Select Query<\/h4>\n<p>A select query retrieves data from a database table. Here&#8217;s an example of a select query in Drupal 10:<\/p>\n<pre>$query = \\Drupal::database()-&gt;select('ttn_mysql_table', 't');\r\n$query-&gt;fields('t', ['id', 'name']);\r\n$result = $query-&gt;execute();\r\n\r\nforeach ($result as $row) {\r\n$id = $row-&gt;id;\r\n$name = $row-&gt;name;\r\n\/\/ Do something with the results.\r\n}<\/pre>\n<\/div>\n<div>\n<p>Feed your curiosity \u2013<a href=\"https:\/\/2thenew.online\/blog\/\">\u00a0read more<\/a>\u00a0of our insightful blogs.<\/p>\n<\/div>\n<div class=\"ap-custom-wrapper\"><\/div><!--ap-custom-wrapper-->","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re building a Drupal 10 website, you&#8217;ll probably need to work with a database at some point. Whether you&#8217;re retrieving data from the database or making changes, you&#8217;ll need to use SQL queries. In this blog post, we&#8217;ll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select. [&hellip;]<\/p>\n","protected":false},"author":1368,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":372,"footnotes":""},"categories":[3602,4488],"tags":[5235,4862],"class_list":["post-57363","post","type-post","status-publish","format-standard","hentry","category-drupal","category-web-content-management","tag-database-query","tag-drupal"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you&#039;re building a Drupal 10 website, you&#039;ll probably need to work with a database at some point. Whether you&#039;re retrieving data from the database or making changes, you&#039;ll need to use SQL queries. In this blog post, we&#039;ll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Rajveer Singh\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/\" \/>\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=\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"If you&#039;re building a Drupal 10 website, you&#039;ll probably need to work with a database at some point. Whether you&#039;re retrieving data from the database or making changes, you&#039;ll need to use SQL queries. In this blog post, we&#039;ll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/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=\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If you&#039;re building a Drupal 10 website, you&#039;ll probably need to work with a database at some point. Whether you&#039;re retrieving data from the database or making changes, you&#039;ll need to use SQL queries. In this blog post, we&#039;ll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/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\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#article\",\"name\":\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog\",\"headline\":\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2023-08-16T15:01:19+05:30\",\"dateModified\":\"2023-09-06T15:04:40+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#webpage\"},\"articleSection\":\"Drupal, Web Content Management, Database Query, Drupal\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#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\\\/drupal\\\/#listItem\",\"name\":\"Drupal\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/#listItem\",\"position\":2,\"name\":\"Drupal\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#listItem\",\"name\":\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#listItem\",\"position\":3,\"name\":\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/drupal\\\/#listItem\",\"name\":\"Drupal\"}}]},{\"@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\\\/rajveer-singh\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/\",\"name\":\"Rajveer Singh\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/69db7071-beb6-4673-aa20-5c7b9af9de0a_Rajveer-Singh-Profile-Pitcure.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Rajveer Singh\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/\",\"name\":\"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog\",\"description\":\"If you're building a Drupal 10 website, you'll probably need to work with a database at some point. Whether you're retrieving data from the database or making changes, you'll need to use SQL queries. In this blog post, we'll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/rajveer-singh\\\/#author\"},\"datePublished\":\"2023-08-16T15:01:19+05:30\",\"dateModified\":\"2023-09-06T15:04:40+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":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog","description":"If you're building a Drupal 10 website, you'll probably need to work with a database at some point. Whether you're retrieving data from the database or making changes, you'll need to use SQL queries. In this blog post, we'll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.","canonical_url":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#article","name":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog","headline":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/rajveer-singh\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2023-08-16T15:01:19+05:30","dateModified":"2023-09-06T15:04:40+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#webpage"},"articleSection":"Drupal, Web Content Management, Database Query, Drupal"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/drupal\/#listItem","name":"Drupal"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/drupal\/#listItem","position":2,"name":"Drupal","item":"https:\/\/2thenew.online\/blog\/category\/drupal\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#listItem","name":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#listItem","position":3,"name":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/drupal\/#listItem","name":"Drupal"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/rajveer-singh\/#author","url":"https:\/\/2thenew.online\/blog\/author\/rajveer-singh\/","name":"Rajveer Singh","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/69db7071-beb6-4673-aa20-5c7b9af9de0a_Rajveer-Singh-Profile-Pitcure.jpeg","width":96,"height":96,"caption":"Rajveer Singh"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#webpage","url":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/","name":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog","description":"If you're building a Drupal 10 website, you'll probably need to work with a database at some point. Whether you're retrieving data from the database or making changes, you'll need to use SQL queries. In this blog post, we'll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/rajveer-singh\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/rajveer-singh\/#author"},"datePublished":"2023-08-16T15:01:19+05:30","dateModified":"2023-09-06T15:04:40+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog","og:description":"If you're building a Drupal 10 website, you'll probably need to work with a database at some point. Whether you're retrieving data from the database or making changes, you'll need to use SQL queries. In this blog post, we'll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.","og:url":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module | TO THE NEW Blog","twitter:description":"If you're building a Drupal 10 website, you'll probably need to work with a database at some point. Whether you're retrieving data from the database or making changes, you'll need to use SQL queries. In this blog post, we'll cover the basics of four common database queries in Drupal 10: insert, update, delete, and select.","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"57363","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","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":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","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":{"id":"#aioseo-article-65e04086226fd","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2023-05-22 05:15:45","updated":"2024-02-29 08:29:58","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:\/\/2thenew.online\/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:\/\/2thenew.online\/blog\/category\/drupal\/\" title=\"Drupal\">Drupal<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Drupal","link":"https:\/\/2thenew.online\/blog\/category\/drupal\/"},{"label":"How to Perform Insert, Update, Delete, and Select Database Queries in Your Drupal Module","link":"https:\/\/2thenew.online\/blog\/how-to-perform-insert-update-delete-and-select-database-queries-in-your-drupal-module\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/57363","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/1368"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=57363"}],"version-history":[{"count":4,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/57363\/revisions"}],"predecessor-version":[{"id":58345,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/57363\/revisions\/58345"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=57363"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=57363"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=57363"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}