SQL Query Quiz

SQL Query Quiz

12th Grade

40 Qs

quiz-placeholder

Similar activities

Comptia IT F CH7

Comptia IT F CH7

9th - 12th Grade

44 Qs

PENILAIAN AKHIR SEMESTER PWPB XII

PENILAIAN AKHIR SEMESTER PWPB XII

12th Grade

40 Qs

4.1 Pangkalan Data & SQL (Tingkatan 3)

4.1 Pangkalan Data & SQL (Tingkatan 3)

9th - 12th Grade

40 Qs

Test Out Chapter 7 and 8 programming and databases

Test Out Chapter 7 and 8 programming and databases

10th - 12th Grade

44 Qs

การเขียนโปรแกรมภาษาคอมพิวเตอร์ (Final)

การเขียนโปรแกรมภาษาคอมพิวเตอร์ (Final)

9th - 12th Grade

40 Qs

พฐ.ระบบฐานข้อมูลบนเครือข่าย

พฐ.ระบบฐานข้อมูลบนเครือข่าย

12th Grade

40 Qs

Verifica SQL 5B marzo fila A

Verifica SQL 5B marzo fila A

12th Grade

35 Qs

Database - Full Quiz

Database - Full Quiz

8th - 12th Grade

41 Qs

SQL Query Quiz

SQL Query Quiz

Assessment

Quiz

Computers

12th Grade

Medium

Created by

diksha goplani

Used 1+ times

FREE Resource

40 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query is used to select all columns from a table named Students where the Age is greater than 18?

SELECT * FROM Students WHERE Age > 18;

SELECT * FROM Students WHERE Age = 18;

SELECT Students FROM Age > 18;

SELECT * FROM Students WHERE Age >= 18;

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query is used to count the total number of employees in the Employee table?

SELECT COUNT(*) FROM Employee;

SELECT TOTAL(Employee) FROM Employee;

SELECT NUM(Employee) FROM Employee;

SELECT EMPLOYEE COUNT FROM Employee;

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query is used to retrieve the maximum salary from the Salaries table?

SELECT MAX(Salary) FROM Salaries;

SELECT HIGH(Salary) FROM Salaries;

SELECT SALARY MAX FROM Salaries;

SELECT MAXIMUM(Salary) FROM Salaries;

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the result of the following query? SELECT Name, Age FROM Students WHERE Age BETWEEN 18 AND 25;

Selects names and ages of students between 18 and 25 years old

Selects names and ages of students who are exactly 18 and 25 years old

Selects only students older than 25

Selects all students with names and ages

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query is used to select the first name, last name, and age of all employees from the Employee table, and sort them in ascending order of age?

SELECT FirstName, LastName, Age FROM Employee ORDER BY Age ASC;

SELECT * FROM Employee ORDER BY Age;

SELECT FirstName, LastName, Age FROM Employee ORDER BY Age DESC;

SELECT FirstName, LastName, Age FROM Employee WHERE Age > 30;

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query is used to find all unique cities from the Customers table?

SELECT DISTINCT City FROM Customers;

SELECT UNIQUE City FROM Customers;

SELECT City FROM Customers GROUP BY City;

SELECT City FROM Customers WHERE DISTINCT;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which SQL query would be used to update the Salary of an employee with EmployeeID 102 to 50000 in the Employees table?

UPDATE Employees SET Salary = 50000 WHERE EmployeeID = 102;

UPDATE Salary SET Employees = 50000 WHERE EmployeeID = 102;

UPDATE Employees SET Salary = 50000;

UPDATE Employees SET Salary = 50000 WHERE EmployeeID = 101;

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?