Data Definition Language (DDL) in SQL:
A Data Definition Language or Data Description Language (DDL) is used to define data structures, especially it defines database schema.
The Data Definition Language DDL part of SQL permits database tables to create or delete. It also defines indexes (keys), it specifies links between tables, and also DDL imposes constraints between tables.
The most important DDL statements in SQL are given bellow:
We will see more about each SQL Statements and how to use these statements in your SQL Query in following SQL sessions.
A Data Definition Language or Data Description Language (DDL) is used to define data structures, especially it defines database schema.
The Data Definition Language DDL part of SQL permits database tables to create or delete. It also defines indexes (keys), it specifies links between tables, and also DDL imposes constraints between tables.
The most important DDL statements in SQL are given bellow:
- CREATE DATABASE
- ALTER DATABASE
- DROP DATABASE
- CREATE TABLE
- ALTER TABLE
- DROP TABLE
- CREATE INDEX
- DROP INDEX
We will see more about each SQL Statements and how to use these statements in your SQL Query in following SQL sessions.
0 comments:
Post a Comment