SQL and Database Concepts Quiz3

SQL and Database Concepts Quiz3

University

15 Qs

quiz-placeholder

Similar activities

Recap of Sessions 20 & 21

Recap of Sessions 20 & 21

11th Grade - University

10 Qs

SQL and Database Concepts Quiz

SQL and Database Concepts Quiz

University

15 Qs

International Transportation Logistics - Chapter 6 Review

International Transportation Logistics - Chapter 6 Review

University

10 Qs

DBMS-QUIZ

DBMS-QUIZ

University

11 Qs

Quiz SAP Modul 2

Quiz SAP Modul 2

University

10 Qs

Deep Learning

Deep Learning

University

10 Qs

Artificial Intelligence CT-5

Artificial Intelligence CT-5

University

20 Qs

Cohort34_1404

Cohort34_1404

University

12 Qs

SQL and Database Concepts Quiz3

SQL and Database Concepts Quiz3

Assessment

Quiz

Engineering

University

Hard

Created by

Tuấn Đình

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following SQL statement do? Delete from Customer_T where state = ‘HI’;

Deletes all records from customer_t where the state is equal to HI

Removes the Customer_T table from the database

Deletes all records from the Customer_T table

Doesn’t delete anything because of a syntax error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is one of the basic types of joins in DB?

Outer join

Self-join

Equi-join

All of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the below SELECT statement is used to select all columns of EMP table?

SELECT ALL FROM emp

SELECT # FROM emp

SELECT * FROM emp

SELECT empno, ename, deptno, sal, job, mgr, hiredate FROM emp

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select DatePart(yy, ‘20/01/2021’) As ‘Năm’

01

2021

20

20/01/2021

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Determine the error in the below SELECT statement SELECT ename, deptno, sal FROM emp WHERE job=CLERK;

WHERE clause cannot refer the column JOB since it doesn’t appear in the SELECT column list

Character literal CLERK must be enclosed within single quotes

Character literal CLERK must be enclosed within parentheses

No error in the query

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the benefits of Triggers?

Generating some derived column values automatically

Enforcing referential integrity

Synchronous replication of tables

All of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following steps: Transaction A retrieves record R at time T Transaction B retrieves the same record at time T+1 Transaction A updates the record at time T+2 (based on value seen at time T) Transaction B updates the same record at time T+3 (based on value seen at time T+1) What is the result of the above sequence of steps?

Transaction B’s update would be overwritten by transaction A’s update

Transaction A’s update would be overwritten by transaction B’s update

Transaction B’s update would be overwritten by transaction B’s update

Transaction A’s update would be overwritten by transaction A’s update

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?