can you please help me understand from scratch about DDL & DML ...
+6
A:
DDL is Data Definition Language : it is used to define data structures.
For example, with SQL, it would be instructions such as create table
, alter table
, ...
DML is Data Manipulation Language : it is used to manipulate data itself.
For example, with SQL, it would be instructions such as insert
, update
, delete
, ...
Pascal MARTIN
2010-04-05 11:56:00
A:
DDL = Data Definition Language, any commands that provides structure and other information about your data
DML = Data Manipulation Language, there's only 3 of them, INSERT, UPDATE, DELETE. 4, if you will count SELECT * INTO x_tbl from tbl
of MSSQL (ANSI SQL: CREATE TABLE x_tbl AS SELECT * FROM tbl
)
Michael Buen
2010-04-05 12:01:43