DDL is abbreviation from Data Definition Language.
DDL is nothing but the command or query fired to perform operations which can lead to creation and manipulation of objects such as Schema, Tables, Views, Data Base etc.
DDL is used to shape and structure the Data Base
Example:
create database school_management;
In the above we command the DBMS create a new Database named school_management.