<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dml commands in sql with examples - Wikitechy</title>
	<atom:link href="https://www.wikitechy.com/interview-questions/tag/dml-commands-in-sql-with-examples/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wikitechy.com/interview-questions/tag/dml-commands-in-sql-with-examples/</link>
	<description>Interview Questions</description>
	<lastBuildDate>Tue, 27 Sep 2022 10:48:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.wikitechy.com/interview-questions/wp-content/uploads/2025/10/cropped-wikitechy-icon-32x32.png</url>
	<title>dml commands in sql with examples - Wikitechy</title>
	<link>https://www.wikitechy.com/interview-questions/tag/dml-commands-in-sql-with-examples/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What are the different types of SQL commands ?</title>
		<link>https://www.wikitechy.com/interview-questions/sql/what-are-the-different-types-of-sql-commands/</link>
					<comments>https://www.wikitechy.com/interview-questions/sql/what-are-the-different-types-of-sql-commands/#respond</comments>
		
		<dc:creator><![CDATA[webmaster]]></dc:creator>
		<pubDate>Tue, 27 Sep 2022 10:48:22 +0000</pubDate>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[DCL and TCL Commands]]></category>
		<category><![CDATA[DDL]]></category>
		<category><![CDATA[ddl commands]]></category>
		<category><![CDATA[ddl commands in sql with syntax and examples]]></category>
		<category><![CDATA[ddl commands with examples]]></category>
		<category><![CDATA[DML]]></category>
		<category><![CDATA[dml commands]]></category>
		<category><![CDATA[dml commands in sql with examples]]></category>
		<category><![CDATA[DQL]]></category>
		<category><![CDATA[List of SQL Commands with Example]]></category>
		<category><![CDATA[SQL Commands]]></category>
		<category><![CDATA[SQL commands in SQL Server]]></category>
		<category><![CDATA[sql commands with example]]></category>
		<category><![CDATA[Types of SQL Commands]]></category>
		<category><![CDATA[types of sql commands with examples]]></category>
		<category><![CDATA[What are the different types of SQL commands?]]></category>
		<guid isPermaLink="false">https://www.wikitechy.com/interview-questions/?p=4872</guid>

					<description><![CDATA[DDL (Data Definition Language) DML (Data Manipulation Language) DCL (Data Control Language) TCL (Transaction Control Language) DDL(Data Definition Language) DDL is a syntax that is used for creating SQL commands. It is called as DDL becuase it defines the syntax for creating a data base. DDL is part of SQL which defines the data structure [&#8230;]]]></description>
										<content:encoded><![CDATA[<ul>
<li style="text-align: justify;">DDL (Data Definition Language)</li>
<li style="text-align: justify;">DML (Data Manipulation Language)</li>
<li style="text-align: justify;">DCL (Data Control Language)</li>
<li style="text-align: justify;">TCL (Transaction Control Language)</li>
</ul>
<p style="text-align: justify;"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-4873 aligncenter" src="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/09/sql-commands.jpg" alt="" width="535" height="294" srcset="https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/09/sql-commands.jpg 535w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/09/sql-commands-300x165.jpg 300w, https://www.wikitechy.com/interview-questions/wp-content/uploads/2022/09/sql-commands-390x214.jpg 390w" sizes="(max-width: 535px) 100vw, 535px" /></p>
<h3 id="ddldata-definition-language" style="text-align: justify;"><strong>DDL(Data Definition Language)</strong></h3>
<ul style="text-align: justify;">
<li>DDL is a syntax that is used for creating SQL commands. It is called as DDL becuase it defines the syntax for creating a data base.</li>
<li>DDL is part of SQL which defines the data structure of the database at the initial stage when creating a database  and is also used for creating and modification of the structure of the database.</li>
</ul>
<h4 id="commands-in-ddl-are" style="text-align: justify;"><strong>Commands in DDL are</strong></h4>
<ul style="text-align: justify;">
<li><strong>Create table</strong><strong>:</strong> This command is used to create a table in a database or its objects (like table, index, function, views, store procedure, and triggers).</li>
<li><strong>Alter table</strong><strong>:</strong> This is used to alter the structure of the database.</li>
<li><strong>Drop table</strong><strong>:</strong> This command is used to delete objects from the database.</li>
</ul>
<h3 id="data-manipulation-language" style="text-align: justify;"><strong>Data Manipulation Language</strong></h3>
<ul style="text-align: justify;">
<li>DML uses the existing data base for manipulation of data.</li>
<li>It helps users to retreive the data and perform manipulation on the data like inserting data, updating data, and deleting data using the following data manipulation commands like insert, update and delete.</li>
</ul>
<h3 id="data-control-language" style="text-align: justify;"><strong>Data Control Language</strong></h3>
<ul style="text-align: justify;">
<li>As the name suggests data control language provides control for accessing the data in the database.</li>
<li>These commands are usually used for providing previlages and controls to users who likes to access the database.</li>
<li>Commands used in DCL for control and user previlages are Grant and Revoke.</li>
</ul>
<h3 id="transaction-control-language" style="text-align: justify;"><strong>Transaction Control Language</strong></h3>
<ul style="text-align: justify;">
<li>TCL command statements are used to control changes made by the DML commands.</li>
<li>It also authorizes the statements to assemble in conjunction into logical transactions.</li>
<li>The commands that are used in TCL are Commit, Rollback, Savepoint, Begin, and Transaction.</li>
</ul>
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">
]]></content:encoded>
					
					<wfw:commentRss>https://www.wikitechy.com/interview-questions/sql/what-are-the-different-types-of-sql-commands/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
