SQL

DDL (Data Definition Language)

English

Overview

A general term for the SQL statements that define or change the structure of a database itself, such as tables and indexes.

Details

Short for Data Definition Language. This includes CREATE TABLE (to create a table), ALTER TABLE (to change its structure), and DROP TABLE (to delete it). It's distinct from DML (Data Manipulation Language), which includes statements like INSERT, UPDATE, and DELETE that operate on the data itself.

More Database terms