Webmaster Forums - Website and SEO Help

Web Development and Design => Website Design and HTML => Topic started by: Black Ninja on January 15, 2013, 06:48:53 AM

Title: What are the difference between DDL and DML?
Post by: Black Ninja on January 15, 2013, 06:48:53 AM
What are the difference between DDL and DML? And why and where should we use these term in SQL?
Title: Re: What are the difference between DDL and DML?
Post by: virgil on January 22, 2013, 01:35:28 AM
Data Definition Language (DDL) is a computer language used to define the data structures in the table. It primarily uses the CREATE command in SQL, while Data Manipulation Language (DML) is a computer language used to manipulate the data in database. It includes various modified statements in the database.
Title: Re: What are the difference between DDL and DML?
Post by: icecube media on February 07, 2013, 04:49:45 AM
Data Definition Language are used to to define the structure and schema. It includes commands like: Create,Alter,Drop,Comment,Truncate,Rename.

Data Manipulation Language are used for managing data within the schema objects.It include command like: Select,Insert,Delete,Merge,Update,Call etc.