devonmanelski.com |
  |
Home | I.T. Management | Business Analysis & Project Management | VB.Net | SQL Server | About | |
Summary
Structured Query Language (SQL) is a Query Language that is used to create,delete and change database objects in a Relational Database Management System (RDBMS). Within SQL there are two main types of statements: Data Definition Language (DDL) and Data Manipulation Language (DML) Statements. This article focuses on Data Definition Language (DDL). There are three main commands in Data Definition Language (DDL): CREATE, DROP and ALTER. These commands are used to CREATE and DROP databases, tables, indexes, stored procedures, triggers, defaults, constraints, and views. The ALTER command can only be used on a database table.