Informatica - Scuola secondaria di secondo gradoSystem System / Volume Sistemi Informativi Aziendali A per il secondo biennio

SQL - Quiz

2 esercizi
SVOLGI
INFO

Informatica

Statements and commands

Which of these statements are true and which are false?

A:

DDL statements are used to define and modify data in the database.

B:

SELECT is a DCL statement.

C:

DML statements include the SELECT command.

D:

The GRANT command gives users access rights to database objects.

E:

The DELETE command removes a table from the database.

F:

The INSERT command is used to insert a new column in a table.

Vero o falso
1

Il punteggio di un esercizio è determinato
dalla difficoltà: da 1 (più facile) a 5 (più
difficile). Vuoi saperne di più? Consulta il
Centro assistenza

Informatica

A Books table

Consider the Books table:
Books (BookID, Title, Pages, Cover, Price, Publisher, AuthorID)
Which of the following statements is correct with respect to the following SQL command?

SELECT Title, Pages, Price
FROM Books
WHERE Pages > 300;

A:

The query uses only a projection operation on the Books table.

B:

The query lists the values of Title, Pages and Price of the books over 300 pages, ordered by Title.

C:

The query is an example of both join and selection operations.

D:

The query lists the values of Title, Pages and Price of the books over 300 pages.

Scelta multipla
1

Il punteggio di un esercizio è determinato
dalla difficoltà: da 1 (più facile) a 5 (più
difficile). Vuoi saperne di più? Consulta il
Centro assistenza