SQL Quiz: 25 MCQs on the Student Table

SQL Quiz: 25 MCQs on the Student Table

University

25 Qs

quiz-placeholder

Similar activities

DBMS_LAB_06_12_22_Batch 1 2

DBMS_LAB_06_12_22_Batch 1 2

University

20 Qs

การพัฒนาเว็บชั้นสูง (PHP)

การพัฒนาเว็บชั้นสูง (PHP)

University

30 Qs

Premiere Pro Tools I

Premiere Pro Tools I

6th Grade - University

25 Qs

AACS3013 Quick Revision C1-C3

AACS3013 Quick Revision C1-C3

University

20 Qs

Testout Security 4.1-4.2

Testout Security 4.1-4.2

11th Grade - University

20 Qs

sql lab

sql lab

University

20 Qs

Introduction to the Engineering Field: Final Assessment

Introduction to the Engineering Field: Final Assessment

6th Grade - University

20 Qs

EDUCATION 104-QUIZ

EDUCATION 104-QUIZ

University

20 Qs

SQL Quiz: 25 MCQs on the Student Table

SQL Quiz: 25 MCQs on the Student Table

Assessment

Quiz

Computers

University

Medium

Created by

ARUN R

Used 2+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which SQL statement retrieves all columns from the students table?

  • GET FROM students;


  • SELECT
    FROM students;


  • FETCH FROM students;

  • SHOW FROM students;

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you retrieve only the names of all students?

SELECT Name FROM students;

SHOW Name FROM students;

EXTRACT Name FROM students;

DISPLAY Name FROM students;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which clause is used to filter records based on a condition?

ORDER BY

WHERE

GROUP BY

HAVING

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the following query return?

SELECT DISTINCT Department FROM students;

Number of departments

List of all unique departments

All student names

Count of students

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which query fetches students older than 21?

SELECT FROM students WHERE Age > 21;

SELECT FROM students WHERE Age >= 21;

SELECT FROM students HAVING Age > 21;

SELECT FROM students FILTER Age > 21;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you find students enrolled before 2023?

SELECT FROM students WHERE EnrollmentDate < '2023-01-01';

SELECT FROM students WHERE EnrollmentDate > '2023-01-01';

SELECT FROM students WHERE EnrollmentDate BETWEEN '2023-01-01' AND '2024-01-01';

SELECT FROM students ORDER BY EnrollmentDate;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which SQL function counts the total number of students?

SUM(*)

COUNT(*)

TOTAL(*)

NUMBER(*)

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?