What Are DDL Statements in MySQL

Q

What Are DDL Statements in MySQL?

✍: 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.

 

CREATE TABLE Statement in MySQL

CREATE, ALTER and DROP Statements in MySQL

CREATE, ALTER and DROP Statements in MySQL

⇑⇑ MySQL Database Tutorials

2018-03-10, 1528🔥, 0💬