Data Definition
The Data Definition Language (DDL) manages table and index structure. The most basic items of DDL are the CREATE, ALTER, RENAME, DROP and TRUNCATE statements:
CREATEcreates an object (a table, for example) in the database, e.g.:
ALTERmodifies the structure of an existing object in various ways, for example, adding a column to an existing table or a constraint, e.g.:
TRUNCATEdeletes all data from a table in a very fast way, deleting the data inside the table and not the table itself. It usually implies a subsequent COMMIT operation, i.e., it cannot be rolled back (data is not written to the logs for rollback later, unlike DELETE).
DROPdeletes an object in the database, usually irretrievably, i.e., it cannot be rolled back, e.g.:
Read more about this topic: SQL
Famous quotes containing the words data and/or definition:
“To write it, it took three months; to conceive it three minutes; to collect the data in itall my life.”
—F. Scott Fitzgerald (18961940)
“Was man made stupid to see his own stupidity?
Is God by definition indifferent, beyond us all?
Is the eternal truth mans fighting soul
Wherein the Beast ravens in its own avidity?”
—Richard Eberhart (b. 1904)
Related Subjects
Related Phrases
Related Words