Computer Science, asked by farhanfaiz1243, 7 months ago

Which is the subset of SQL commands used to manipulate Oracle Database

structures, including tables?​

Answers

Answered by YMissY
13

Answer:

The DDL is used to manage table and index structure. CREATE, ALTER, RENAME, DROP and TRUNCATE statements are the names of few data definition elements.

Answered by ravilaccs
0

Answer:

DDL is  the subset of SQL commands used to manipulate Oracle Database structures, including tables

Explanation:

  • DDL or Data Definition Language actually consists of the SQL commands that can be used to define the database schema. It simply deals with descriptions of the database schema and is used to create and modify the structure of database objects in the database. DDL is a set of SQL commands used to create, modify, and delete database structures but not data. These commands are normally not used by a general user, who should be accessing the database via an application.
  • The DDL is used to manage table and index structure. CREATE, ALTER, RENAME, DROP and TRUNCATE statements are the names of few data definition elements.
Similar questions