SQL - Basics

SQL - Basics

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Database Fundamentals

Database Fundamentals

KG - University

10 Qs

XII Csc Chapter 11

XII Csc Chapter 11

12th Grade

10 Qs

CP1222-WEEK 1-2 QUIZ

CP1222-WEEK 1-2 QUIZ

12th Grade

10 Qs

DBMS-Open Office

DBMS-Open Office

9th - 12th Grade

10 Qs

Database Fundamentals

Database Fundamentals

10th Grade

10 Qs

Oracle (Quiz1)

Oracle (Quiz1)

12th Grade

8 Qs

SS 2 Online Exam

SS 2 Online Exam

11th Grade

10 Qs

SQL - Basics

SQL - Basics

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Jo Thomas

Used 62+ 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