Search Header Logo

SQL MCQ

Authored by CDAC Silchar

Computers

Professional Development

SQL MCQ
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

51 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which answer is NOT a type of table index?

nonclustered

unique

heap

hash

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The keywords AND, IN, LIKE, and between all belong to a category called what?

joining operations

linking operations

criteria operations

logical operations

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the result of this series of statements?

BEGIN TRY

SELECT 'Foo' ASResult;

END TRY

BEGIN CATCH

SELECT 'Bar' ASResult;

END CATCH

Foo

FooBar

Foo Bar

Bar

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Given these two tables, which query generates a listing showing student names

and the department office location where you could reach each student?

SELECT Students.first_name, Students.last_name, Departments.office_location FROM Students, Departments;

SELECT Students.first_name, Students.last_name, Departments.office_location

FROM Students JOIN Departments ON Students.department = Departments.department;

SELECT Students.first_name, Students.last_name, Departments.office_location

FROM Students JOIN Departments;

SELECT Students.first_name, Students.last_name, Departments.office_location

FROM Students ON Students.department = Departments.department;

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Given the Games table pictured, which query generates the results shown?

SELECTGameType, MaxPlayers, count(*) ASNumberOfGames

FROMGames

GROUP BYMaxPlayers, GameType

ORDER BYMaxPlayers, GameType;

SELECTGameType, MaxPlayers, count(*) ASNumberOfGames

FROMGames

GROUP BYGameType, MaxPlayers

ORDER BYGameType;

SELECTGameType, count(Players) ASMaxPlayers, NumberOfGames

FROMGames

GROUP BYGameType, MaxPlayers

ORDER BYGameType;

SELECTGameType, MaxPlayers, count(*) ASNumberOfGames

FROMGames

GROUP BYGameType

ORDER BYMaxPlayers;

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which answer is a possible result of the sequence of commands below?

DECLARE@UniqueID uniqueidentifier = NEWID();

SELECT@UniqueID ASResult;

1

bb261196-66a5-43af-815d-123fc593cf3a

z350mpj1-62lx-40ww-9ho0-4u1875rt2mx4

0x2400001155F04846674AD4590F832C0

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You need to find all students that are not on the "Chemistry Cats" team. Which

query does NOT work for this task?

WHERE team NOT 'Chemistry Cats';

WHERE team <> 'Chemistry Cats';

WHERE team != 'Chemistry Cats';

WHERE NOT team = 'Chemistry Cats';

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?