SQL MCQ

SQL MCQ

Professional Development

51 Qs

quiz-placeholder

Similar activities

Perancangan Pemrograman dan Database

Perancangan Pemrograman dan Database

University - Professional Development

50 Qs

Introduction to Database Systems, DBMS

Introduction to Database Systems, DBMS

University - Professional Development

50 Qs

HTML and CSS

HTML and CSS

Professional Development

50 Qs

Тема го тема 54-106

Тема го тема 54-106

Professional Development

54 Qs

HTML Test 01

HTML Test 01

Professional Development

47 Qs

MTA 98-364 RESUME

MTA 98-364 RESUME

University - Professional Development

50 Qs

FAT_SW_(ExamenBD)

FAT_SW_(ExamenBD)

Professional Development

50 Qs

Javascript 1 (Taller Empleo Ayerbe)

Javascript 1 (Taller Empleo Ayerbe)

Professional Development

50 Qs

SQL MCQ

SQL MCQ

Assessment

Quiz

Computers

Professional Development

Hard

Created by

CDAC Silchar

FREE Resource

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';

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?