{"id":2885,"date":"2026-05-07T09:37:29","date_gmt":"2026-05-07T01:37:29","guid":{"rendered":"https:\/\/tekno.bali-island.com\/?p=2885"},"modified":"2026-05-07T09:37:30","modified_gmt":"2026-05-07T01:37:30","slug":"dml-in-sql-definition-types-and-basic-commands","status":"publish","type":"post","link":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/","title":{"rendered":"DML in SQL: Definition, Types, and Basic Commands"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Definition and Types of DML<\/strong><\/h2>\n\n\n\n<p><strong>Data Manipulation Language (DML)<\/strong>&nbsp;is a SQL query method that can be used after the database structure has been created using DDL (Data Definition Language). Simply put, DML is a set of query commands that function to manipulate data within a database.<\/p>\n\n\n\n<p>The main commands in DML include&nbsp;<strong>INSERT<\/strong>&nbsp;to add data,&nbsp;<strong>UPDATE<\/strong>&nbsp;to change or replace data, and&nbsp;<strong>DELETE<\/strong>&nbsp;to remove data.<\/p>\n\n\n\n<p>DML itself is divided into two main types:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Procedural DML:<\/strong>\u00a0In this type, the commands used to manipulate data must be accompanied by clear instructions on\u00a0<em>how<\/em>\u00a0the data in the database file is accessed. Procedural DML is commonly used in high-level programming languages such as C and C++.<\/li>\n\n\n\n<li><strong>Non-Procedural DML:<\/strong>\u00a0Unlike procedural DML, in non-procedural DML data can be manipulated directly without needing to include commands on how to access that data. Non-procedural DML is typically used in DBMS (Database Management System) such as Paradox, FoxPro, and SQL.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Uses of INSERT, UPDATE, and DELETE Commands in SQL<\/strong><\/h2>\n\n\n\n<p>Below is a more detailed explanation of the three basic DML commands along with examples of their usage:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. INSERT Command<\/strong><\/h3>\n\n\n\n<p><strong>INSERT<\/strong>&nbsp;is a command used to add or insert new rows of data into a table in the database.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">INSERT INTO table_name (column_data) VALUES (data_values);<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">INSERT INTO Jurusan (KodeJur, NamaJur) VALUES ('12', 'Teknik Informatika');<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Explanation:<\/strong>&nbsp;The command above is used to add new data to the &#8220;Jurusan&#8221; table. The &#8220;KodeJur&#8221; column will be filled with the value 12, while the &#8220;NamaJur&#8221; column will be filled with Teknik Informatika.<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. UPDATE Command<\/strong><\/h3>\n\n\n\n<p><strong>UPDATE<\/strong>&nbsp;is a command used to change, update, or replace existing data in the database.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">UPDATE table_name SET column_name = new_column_value WHERE condition;<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">UPDATE Mahasiswa SET Nama='Wilan' WHERE No='1123';<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Explanation:<\/strong>&nbsp;This command means we are modifying data in the &#8220;Mahasiswa&#8221; table, specifically replacing the content of the &#8220;Nama&#8221; column with Wilan, only for the row that has a &#8220;No&#8221; value equal to 1123.<br><strong>Important Note:<\/strong>&nbsp;If the WHERE condition is not included, the system will change&nbsp;<strong>all<\/strong>&nbsp;data in that column for every row.<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. DELETE Command<\/strong><\/h3>\n\n\n\n<p><strong>DELETE<\/strong>&nbsp;is a command used to delete rows of data from the database.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Syntax:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DELETE FROM table_name WHERE condition;<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>sql<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DELETE FROM Mahasiswa WHERE No='1123';<\/pre>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Explanation:<\/strong>&nbsp;This command is useful for deleting data from the &#8220;Mahasiswa&#8221; table that has a &#8220;No&#8221; (or student ID) record of 1123.<br><strong>Important Note:<\/strong>&nbsp;Deleting data using DELETE is highly dependent on the WHERE condition used. You should always double-check whether the DELETE command is defined with the correct condition so that no important data is accidentally deleted.<\/p>\n<\/blockquote>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Definition and Types of DML Data Manipulation Language (DML)&nbsp;is a SQL query method that can be used after the database structure has been created using DDL (Data Definition Language). Simply put, DML is a set of query commands that function to manipulate data within a database. The main commands in DML include&nbsp;INSERT&nbsp;to add data,&nbsp;UPDATE&nbsp;to change or replace data, and&nbsp;DELETE&nbsp;to remove data. DML itself is divided into two main types: Uses of INSERT, UPDATE, and DELETE Commands in SQL Below is a more detailed explanation of the three basic DML commands along with examples of their usage: 1. INSERT Command INSERT&nbsp;is a command used to add or insert new rows of data into a table in the database. Syntax: sql INSERT INTO table_name (column_data) VALUES (data_values); Example: sql INSERT INTO Jurusan (KodeJur, NamaJur) VALUES (&#8217;12&#8217;, &#8216;Teknik Informatika&#8217;); Explanation:&nbsp;The command above is used to add new data to the &#8220;Jurusan&#8221; table. The &#8220;KodeJur&#8221; column will be filled with the value 12, while the &#8220;NamaJur&#8221; column will be filled with Teknik Informatika. 2. UPDATE Command UPDATE&nbsp;is a command used to change, update, or replace existing data in the database. Syntax: sql UPDATE table_name SET column_name = new_column_value WHERE condition; Example: sql UPDATE Mahasiswa &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2876,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[93],"tags":[],"class_list":["post-2885","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>DML in SQL: Definition, Types, and Basic Commands<\/title>\n<meta name=\"description\" content=\"Understanding the concept of DML in SQL. Learn the differences between procedural &amp; non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.\" \/>\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\/dml-in-sql-definition-types-and-basic-commands\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DML in SQL: Definition, Types, and Basic Commands\" \/>\n<meta property=\"og:description\" content=\"Understanding the concept of DML in SQL. Learn the differences between procedural &amp; non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/\" \/>\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-07T01:37:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-07T01:37:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\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\\\/dml-in-sql-definition-types-and-basic-commands\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/\"},\"author\":{\"name\":\"Wilan\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#\\\/schema\\\/person\\\/945426dbaeb9dc9d603797b51b1b7e42\"},\"headline\":\"DML in SQL: Definition, Types, and Basic Commands\",\"datePublished\":\"2026-05-07T01:37:29+00:00\",\"dateModified\":\"2026-05-07T01:37:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/\"},\"wordCount\":418,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/DML.webp\",\"articleSection\":[\"Programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/\",\"name\":\"DML in SQL: Definition, Types, and Basic Commands\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/DML.webp\",\"datePublished\":\"2026-05-07T01:37:29+00:00\",\"dateModified\":\"2026-05-07T01:37:30+00:00\",\"description\":\"Understanding the concept of DML in SQL. Learn the differences between procedural & non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#primaryimage\",\"url\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/DML.webp\",\"contentUrl\":\"https:\\\/\\\/tekno.bali-island.com\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/DML.webp\",\"width\":1920,\"height\":1080,\"caption\":\"DML\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/articles\\\/dml-in-sql-definition-types-and-basic-commands\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/tekno.bali-island.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DML in SQL: Definition, Types, and Basic Commands\"}]},{\"@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":"DML in SQL: Definition, Types, and Basic Commands","description":"Understanding the concept of DML in SQL. Learn the differences between procedural & non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.","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\/dml-in-sql-definition-types-and-basic-commands\/","og_locale":"en_US","og_type":"article","og_title":"DML in SQL: Definition, Types, and Basic Commands","og_description":"Understanding the concept of DML in SQL. Learn the differences between procedural & non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.","og_url":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/","og_site_name":"Bali Island Tekno","article_publisher":"https:\/\/www.facebook.com\/people\/Wilanpedia\/61575048527927\/","article_published_time":"2026-05-07T01:37:29+00:00","article_modified_time":"2026-05-07T01:37:30+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.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\/dml-in-sql-definition-types-and-basic-commands\/#article","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/"},"author":{"name":"Wilan","@id":"https:\/\/tekno.bali-island.com\/en\/#\/schema\/person\/945426dbaeb9dc9d603797b51b1b7e42"},"headline":"DML in SQL: Definition, Types, and Basic Commands","datePublished":"2026-05-07T01:37:29+00:00","dateModified":"2026-05-07T01:37:30+00:00","mainEntityOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/"},"wordCount":418,"commentCount":0,"publisher":{"@id":"https:\/\/tekno.bali-island.com\/en\/#organization"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.webp","articleSection":["Programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/","url":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/","name":"DML in SQL: Definition, Types, and Basic Commands","isPartOf":{"@id":"https:\/\/tekno.bali-island.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#primaryimage"},"image":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#primaryimage"},"thumbnailUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.webp","datePublished":"2026-05-07T01:37:29+00:00","dateModified":"2026-05-07T01:37:30+00:00","description":"Understanding the concept of DML in SQL. Learn the differences between procedural & non-procedural DML as well as the functions of INSERT, UPDATE, and DELETE commands.","breadcrumb":{"@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#primaryimage","url":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.webp","contentUrl":"https:\/\/tekno.bali-island.com\/wp-content\/uploads\/2026\/05\/DML.webp","width":1920,"height":1080,"caption":"DML"},{"@type":"BreadcrumbList","@id":"https:\/\/tekno.bali-island.com\/en\/articles\/dml-in-sql-definition-types-and-basic-commands\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tekno.bali-island.com\/en\/"},{"@type":"ListItem","position":2,"name":"DML in SQL: Definition, Types, and Basic Commands"}]},{"@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\/2885","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=2885"}],"version-history":[{"count":1,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2885\/revisions"}],"predecessor-version":[{"id":2886,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/posts\/2885\/revisions\/2886"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media\/2876"}],"wp:attachment":[{"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/media?parent=2885"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/categories?post=2885"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tekno.bali-island.com\/en\/wp-json\/wp\/v2\/tags?post=2885"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}