Multiple choice

Three SQL, DDL, CREATE commands are

  1. Schema, Base and Table

  2. Base, Table and Schema

  3. Key, Base and Table

  4. Schema, Table and View

  5. None of these

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

SQL DDL (Data Definition Language) includes CREATE commands for Schema, Table, and View. These define the structure and relationships in a database. CREATE TABLE defines tables, CREATE VIEW defines virtual tables, and CREATE SCHEMA defines logical database groupings.