MS SQL Server Concepts and Programming Question:
Download Questions PDF

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

Answer:

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.


Download MS SQL Server Interview Questions And Answers PDF

Previous QuestionNext Question
What is a database table?How to create new tables with "CREATE TABLE" statements in MS SQL Server?