SQL Quiz

SQL Quiz

Professional Development

34 Qs

quiz-placeholder

Similar activities

BBDD7

BBDD7

Professional Development

39 Qs

Информатика 4-нұсқа

Информатика 4-нұсқа

Professional Development

35 Qs

Tes I Query

Tes I Query

Professional Development

30 Qs

Database Questions

Database Questions

KG - Professional Development

31 Qs

Database

Database

Professional Development

35 Qs

Comptia Security+ Understanding Application Attacks and security

Comptia Security+ Understanding Application Attacks and security

Professional Development

30 Qs

Relational Database Quiz

Relational Database Quiz

Professional Development

39 Qs

Apache Hive

Apache Hive

Professional Development

32 Qs

SQL Quiz

SQL Quiz

Assessment

Quiz

Computers

Professional Development

Medium

Created by

An Bình

Used 2+ times

FREE Resource

34 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is SQL Query Optimization
The way to write SQL query shorter
The way to write SQL query prettier
The way to write SQL run faster

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is execution plan
The step when database check syntax and validation your query
The blueprint your administrator uses to create a database
The tool to monitor query run time
The detailed step-by-step analysis of how to execute a SQL query
The tool which database engine uses to cache most used queries

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Table "product" have these columns below. Which one should be indexed ?
bar_code
title
price
date
brand_name

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which query below should efficient than others ?
SELECT * FROM product WHERE bar_code LIKE '%91%'
SELECT * FROM product WHERE bar_code LIKE '91%'
SELECT title, date, price FROM product WHERE bar_code LIKE '91%'
SELECT title, date, price FROM product WHERE bar_code LIKE '%91'
SELECT title, date, price FROM product WHERE bar_code LIKE '%91%'

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which query below should efficient than other ?
SELECT e.employee_id, e.first_name, e.last_name FROM employees e WHERE NOT EXISTS ( SELECT 1 FROM managers m WHERE m.manager_id = e.employee_id );
SELECT e.employee_id, e.first_name, e.last_name FROM employees e WHERE e.employee_id NOT IN ( SELECT m.manager_id FROM managers m );

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which query below should efficient than other ?
SELECT product_id, sales_amount, 2023 AS year FROM sales_2023 UNION ALL SELECT product_id, sales_amount, 2024 AS year FROM sales_2024
SELECT product_id, sales_amount, 2023 AS year FROM sales_2023 UNION SELECT product_id, sales_amount, 2024 AS year FROM sales_2024

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Partitioning is..
The process of dividing a table into smaller, more manageable pieces
The act of creating a new database
The method of storing data on multiple hard drives.
A way to improve query performance by indexing data.
The method of migration database to cloud

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?