แบบข้อสอบท้ายบทเรียน 1 : SQL

แบบข้อสอบท้ายบทเรียน 1 : SQL

University

7 Qs

quiz-placeholder

Similar activities

CH 5 - SQL Language and Database Concepts

CH 5 - SQL Language and Database Concepts

University

10 Qs

SQL Programming

SQL Programming

4th Grade - Professional Development

10 Qs

PTS DMI Genap MM

PTS DMI Genap MM

12th Grade - University

10 Qs

introduction to sql

introduction to sql

University

10 Qs

Database Design & Development SQL 2

Database Design & Development SQL 2

University

12 Qs

Injection Part 2

Injection Part 2

University

10 Qs

QUIZ ON SQL

QUIZ ON SQL

University

10 Qs

C# Chapter 6

C# Chapter 6

University

10 Qs

แบบข้อสอบท้ายบทเรียน 1 : SQL

แบบข้อสอบท้ายบทเรียน 1 : SQL

Assessment

Quiz

Computers

University

Hard

Created by

ชุติมา ทวีขจรวงศ์

Used 4+ times

FREE Resource

7 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 2 pts

* FROM Customers;

2.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Write a statement that will select the City column from the Customers table.

___Customers;

3.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Select all the different values from the Country column in the Customers table.

____Country FROM Customers;

4.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Select all records where the City column has the value "Berlin".

SELECT * FROM Customers

______ = ____;

5.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Use the NOT keyword to select all records where City is NOT "Berlin".

SELECT * FROM Customers

_____ = "__" ;

6.

FILL IN THE BLANK QUESTION

1 min • 2 pts

Select all records where the CustomerID column has the value 32.

SELECT * FROM Customers

​ ​ ​ ​ __CustomerID __;

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Select all records from the Customers table, sort the result alphabetically by the column City.

SELECT * FROM Customers

____;