To create an object in our database we need to use DDL(Data Definition Language) statements.
DDL (Data Definition Language) are statements used to create and manage data objects in the database.
We have 4 types of DDL statements in SQL:
1- Create (creates a new object )
Example
2-Alter (alters an existing object)
Example
3-Drop (drops an existing object)
Example
4-Truncate (deletes the content of a table)
Example
We will go in more depth in the future lessons.