Sublanguages
Language Elements
Statements & Clauses
Managing Databases
Keys & Constraints
100

This sublanguage is used to define the structure of a database.

DDL (Data Definition Language)

100

This type of SQL element is a specific value like a character string or a number.

Literal

100

This type of statement begins with the keyword SELECT and ends with a semicolon.

Query

100

Which statement shows all databases in a MySQL database system?

SHOW DATABASES;

100

This type of key uniquely identifies each row in a database table and cannot contain NULL values.

Primary Key


200

This sublanguage is used to retrieve data from the database.

DQL (Data Query Language)

200

Words such as SELECT, INSERT, and UPDATE fall under this category of language elements.

Keywords

200

Each SQL statement is made up of one or more of these.

Clauses

200

Which statement shows all tables in the current default database?

SHOW TABLES

200

This type of key in one table references the primary key of another table.

Foreign Key

300

This sublanguage is responsible for inserting, updating, and deleting data.

DML (Data Manipulation Language)

300

Name given to a database object, such as a column, table, or database.

Identifier

300

This clause is used to specify which columns to retrieve in a query.

SELECT

300

What SQL statement is used to delete an existing database named 'library'?

DROP DATABASE library;

300

This constraint ensures that a column cannot contain NULL values.

NOT NULL

400

This sublanguage is used to manage transactions, including committing and rolling back changes.

DTL (Data Transaction Language)

400

This element is a combination of literals, identifiers, and operations that evaluate to a single value.

Expression

400

This clause filters records that meet a specified condition.

WHERE

400

What SQL statement is used to create a new database named 'school'?

CREATE DATABASE school;

400

When multiple columns are needed to uniquely identify a row, this type of primary key is used.

Composite Primary Key

500

This sublanguage controls user access to the database.

DCL (Data Control Language)

500

This element is ignored by the SQL processor and used for explanation or documentation.

Comment

500

This clause is used to identify the table being queried.

FROM

500

Which SQL statement is used to change the name of a column or remove a column from an existing table?

ALTER TABLE

500

One way to maintain referential integrity is to delete all dependent records when a primary key is deleted. This action is called ____.

CASCADE delete.

M
e
n
u