SQL - Basics

SQL - Basics

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Quiz Database

Quiz Database

10th Grade

10 Qs

Introduction to Database

Introduction to Database

10th Grade

10 Qs

Databases

Databases

3rd - 10th Grade

10 Qs

Database

Database

4th - 10th Grade

8 Qs

1. Flat File & Relational Databases

1. Flat File & Relational Databases

10th Grade

10 Qs

DBMS

DBMS

7th - 10th Grade

10 Qs

DBMS- CLASS8 CBSE

DBMS- CLASS8 CBSE

7th - 10th Grade

10 Qs

Stage 7A - MYSQL QUIZ-Feb code file

Stage 7A - MYSQL QUIZ-Feb code file

7th Grade - University

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