Quote:
Originally Posted by DBcamp
Is DDL and DML specific to a certain platform like Oracle, etc?
|
no, it is common to all database systems that use SQL
DDL is Data Definition Language, and it is that part of SQL which defines the database components, using statements like CREATE, ALTER, and DROP
DML is Data Manipulation Language, and it is that part of SQL which changes the data inside the database components, using statements like INSERT, UPDATE, DELETE, and SELECT