What Are DDL Statements

Q

What Are DDL Statements? - MySQL FAQs - Understanding SQL CREATE, ALTER and DROP Statements

✍: FYIcenter.com

A

DDL (Data Definition Language) statements are statements to create and manage data objects in the database. The are 3 primary DDL statements:

  • CREATE - Creating a new database object.
  • ALTER - Altering the definition of an existing data object.
  • DROP - Dropping an existing data object.

2007-05-11, 4667👍, 0💬