SQL - Basics

SQL - Basics

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

DBMS-Open Office

DBMS-Open Office

9th - 12th Grade

10 Qs

Oracle (Quiz1)

Oracle (Quiz1)

12th Grade

8 Qs

MySQL

MySQL

12th Grade

10 Qs

Databases

Databases

3rd - 10th Grade

10 Qs

advanced ms access

advanced ms access

10th - 11th Grade

11 Qs

Database Fundamentals

Database Fundamentals

10th Grade

10 Qs

Database ICT Revision

Database ICT Revision

9th - 10th Grade

8 Qs

SQL - Basic concepts

SQL - Basic concepts

11th - 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