SQL 3

SQL 3

11th Grade

14 Qs

quiz-placeholder

Similar activities

Boolean and Search Operators

Boolean and Search Operators

9th - 12th Grade

16 Qs

Thukable SC Assessment 2

Thukable SC Assessment 2

7th - 12th Grade

15 Qs

BTEC DIT C3 B1 - Threats to Data

BTEC DIT C3 B1 - Threats to Data

11th Grade

11 Qs

JavaScript Variables

JavaScript Variables

3rd Grade - University

13 Qs

CyberCrime

CyberCrime

5th Grade - Professional Development

10 Qs

STEM Fundamentals

STEM Fundamentals

9th - 12th Grade

18 Qs

PAS GANJIL 2024

PAS GANJIL 2024

11th Grade

10 Qs

BTEC DIT - C3 C1 - Implications of digital systems

BTEC DIT - C3 C1 - Implications of digital systems

11th Grade

9 Qs

SQL 3

SQL 3

Assessment

Quiz

Computers

11th Grade

Medium

Created by

O Hawkridge

Used 8+ times

FREE Resource

14 questions

Show all answers

1.

DROPDOWN QUESTION

30 sec • 1 pt

SQL stands for (a)   .

Strong Question Language
Structured Question Language
Structured Query Language
Seequal Language

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes the function of a primary key in a database?

A method to secure database access

A unique identifier for each record

A way to enhance the performance of database queries

A tool for defining relationships between tables

3.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

Media Image

Select the appropriate SQL query to show...

The title and description of all reviews for products that cost less than £100.

SELECT title, description

FROM Product, Review

WHERE Product.ProductID = Review.ProductID

AND Price < 100

SELECT title, description

FROM *

WHERE Price < 100

SELECT *

FROM Product, Review

WHERE Product.ProductID = Review.ProductID

SELECT title, description

FROM Product

WHERE Product.ProductID = Review.ProductID

AND Price <= 100

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which word is missing from the following SQL statement?


SELECT * table_name

WITH

WHERE

FROM

AND

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How would we script a SQL query to select "Description" from the Item table?

SELECT Item.Description

EXTRACT Description FROM Item

SELECT Item FROM Description

SELECT Description FROM Item

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which query would return only the fields DesignerID and Designer?

SELECT * FROM Designers

SELECT DesignerID, Name FROM Designers

SELECT DesignerID AND Designer FROM Designers

SELECT DesignerID, Designer FROM Designers

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

You are required to update the phone number for only the DesignerID "SMI01" in the "Designer" table. Which of these would successfully do that?

UPDATE Designer SET PhoneNo = '01224123456'

UPDATE Designer (PhoneNo) VALUES ('01224123456')

UPDATE Designer SET PhoneNo = '01224123456' WHERE DesignerID = 'SMI01'

UPDATE PhoneNo = '01224123456' FROM Designer WHERE DesignerID = 'SMI01'

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?