Search Header Logo

SQL Query Quiz

Authored by diksha goplani

Computers

12th Grade

Used 1+ times

SQL Query Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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;

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?