Structured Query Language Quiz

Structured Query Language Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

Introduction to MySQL

Introduction to MySQL

11th - 12th Grade

15 Qs

Database Knowledge Check 3 (SQL)

Database Knowledge Check 3 (SQL)

9th - 12th Grade

12 Qs

SQL DDL

SQL DDL

9th - 12th Grade

15 Qs

XII - CA - Lesson 9 - Connecting PHP and MySQL

XII - CA - Lesson 9 - Connecting PHP and MySQL

12th Grade

20 Qs

3Z_AVALIAÇÃO DE BANCO DE DADOS_3TRI_AV5

3Z_AVALIAÇÃO DE BANCO DE DADOS_3TRI_AV5

12th Grade - University

16 Qs

DBASE BASICS

DBASE BASICS

12th Grade

20 Qs

AV1/R1 3TEC_Banco de Dados - Chave Primária

AV1/R1 3TEC_Banco de Dados - Chave Primária

1st Grade - University

15 Qs

Web-based Development

Web-based Development

5th Grade - University

15 Qs

Structured Query Language Quiz

Structured Query Language Quiz

Assessment

Quiz

Computers

12th Grade

Medium

Created by

Mr Long

Used 12+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of SQL?

To retrieve, delete, and manipulate data in relational databases

To express the logic of how something needs to be achieved

To define and control data access

To create and modify tables in a database

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL command is used to select specific data from a table?

INSERT INTO

DELETE FROM

UPDATE

SELECT

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the SQL command 'SELECT *' do?

Selects all fields from the table

Selects only the primary key field

Selects fields with a specific value

Selects fields based on a condition

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you select records from a table where the name starts with 'A' and the population is greater than 1 million?

SELECT name, population FROM table WHERE name = 'A' AND population > 1 million

SELECT name, population FROM table WHERE name LIKE 'A%' AND population > 1 million

SELECT name, population FROM table WHERE name = 'A' OR population > 1 million

SELECT name, population FROM table WHERE name LIKE 'A%' OR population > 1 million

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL command is used to insert new records into a table?

INSERT INTO

DELETE FROM

UPDATE

SELECT

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you delete all records from a table with a population larger than 10 million?

DELETE FROM table WHERE population > 10 million

DELETE FROM table WHERE population < 10 million

DELETE FROM table WHERE population = 10 million

DELETE FROM table WHERE population >= 10 million

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL command is used to modify data in a table?

INSERT INTO

DELETE FROM

UPDATE

SELECT

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?