Translate

Visit to www.mrmcse.com

19 February 2018

Data Definition Language (DDL)


Data Definition Language (DDL): A database schema is specified by a set of definitions expressed by a special language called a data-definition language. The DDL is also used to specify additional properties of data. 

For instance, the following statement in the SQL language defines the account table:

create table account (
account_number char(10),
balance number(12,2) );

No comments:

Post a Comment