DDL (Data Definition Language) Statements for Tables? in SQL Server

Q

What are DDL (Data Definition Language) statements for tables in SQL Server?

✍: FYIcenter.com

A

DDL (Data Definition Language) statements are statements to create and manage data objects in the database. The are three primary DDL statements to create and manage tables:

  • CREATE TABLE - Creating a new table.
  • ALTER TABLE - Altering the definition of an existing table.
  • DROP TABLE - Dropping an existing table.

 

CREATE TABLE - Creating New Tables in SQL Server

What Is a Table in SQL Server

Managing Tables and Columns in SQL Server

⇑⇑ SQL Server Database Tutorials

2016-11-20, 3387🔥, 0💬