SQL - Basics

SQL - Basics

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

BTEC National ICT U2 - Microsoft Access

BTEC National ICT U2 - Microsoft Access

12th Grade

10 Qs

Databases

Databases

3rd - 10th Grade

10 Qs

CHAPTER 3. INTRODUCTION TO DBMS -1

CHAPTER 3. INTRODUCTION TO DBMS -1

12th Grade

10 Qs

Access Simplified Quiz

Access Simplified Quiz

8th - 12th Grade

10 Qs

Database ICT Revision

Database ICT Revision

9th - 10th Grade

8 Qs

Access - Lesson 10

Access - Lesson 10

9th - 12th Grade

10 Qs

Database Review

Database Review

12th Grade

10 Qs

UH RDBMS

UH RDBMS

12th Grade

10 Qs

SQL - Basics

SQL - Basics

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Jo Thomas

Used 54+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

RDBMS stands for?

Relational Database Management System

Rational Database Management System

Relational Data Management System

Relational Database Management Society

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Semicolon (;) is the standard way to separate each SQL statement in database systems.

True

False

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

SELECT statement is used to ..

Write data to table

Update data to table

Read data from table

Delete from table

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is used to delete a table?

SELECT

DELETE

DROP

ALTER

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Select the statement to display all data from a table that contains the columns index_number, customer_name, customer_address and phone_number

SELECT index_number FROM table;

SELECT index_number, customer_name, customer_address, phone_number FROM table;

SELECT * FROM table;

None of the above

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

SELECT DISTINCT Country FROM Customers;

The above statement provides the list of countries in the table 'Customers'.

True

False