RDBMS-SQL

RDBMS-SQL

University

10 Qs

quiz-placeholder

Similar activities

System Analysis and Design - Phase IV. Part 1

System Analysis and Design - Phase IV. Part 1

University

10 Qs

Rdbms -2-bulit in functions

Rdbms -2-bulit in functions

University

15 Qs

Database Introduction 3

Database Introduction 3

University

15 Qs

SQL

SQL

University

6 Qs

SQL basico

SQL basico

University

11 Qs

DBMS Ex 1

DBMS Ex 1

University

15 Qs

SQL - Constraints

SQL - Constraints

University

15 Qs

Module 5 & Module 6

Module 5 & Module 6

University - Professional Development

10 Qs

RDBMS-SQL

RDBMS-SQL

Assessment

Quiz

Computers

University

Hard

Created by

Monika G

Used 134+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is full form of SQL
Structured Query Language 
Strong Question Language
Structured Question Language
Strong Query Language
Structure Query Language 

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" is "Peter"?
SELECT [all] FROM Persons WHERE FirstName LIKE 'Peter'
SELECT * FROM Persons WHERE FirstName='Peter'
SELECT * FROM Persons WHERE FirstName<>'Peter'
SELECT * FROM Persons WHERE FirstName<>'Peter'
SELECT * FROM Persons WHERE FirstName=='Peter'

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

With SQL, how can you insert a new record into the "Persons" table?
INSERT INTO Persons VALUES ('Jimmy', 'Jackson')  
INSERT ('Jimmy', 'Jackson') INTO Persons
INSERT VALUES ('Jimmy', 'Jackson') INTO Persons
INSERT VALUES ('Jimmy, Jackson') INTO Persons
INSERT ('Jimmy', 'Jackson') VALUES into Persons

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is valid SQL for an Index?
CREATE INDEX ID;
CHANGE INDEX ID;
ADD INDEX ID;
REMOVE INDEX ID;
DELETE INDEX ID;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The HAVING clause does which of the following?
Acts like a WHERE clause but is used for groups rather than columns.
Acts like a WHERE clause but is used for rows rather than columns.
Acts like a WHERE clause but is used for columns rather than groups.
Acts EXACTLY like a WHERE clause.
Acts like a WHERE clause but is used for groups rather than rows.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of the following sorts rows in SQL?
SORT BY
ALIGN BY
ORDER BY
GROUP BY
SORT

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The DROP TABLE statement:
deletes the table structure only.
deletes the table structure along with the table data.
works whether or not referential integrity constraints would be violated.
is not an SQL statement.
deletes the data only.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?