SQL Query and Constraint Quiz

SQL Query and Constraint Quiz

University

25 Qs

quiz-placeholder

Similar activities

GREEN TECHNOLOGY COMPLIANCE

GREEN TECHNOLOGY COMPLIANCE

University

20 Qs

Solidification and Nucleation Quiz

Solidification and Nucleation Quiz

University

20 Qs

Understanding DBMS Keys and Constraints

Understanding DBMS Keys and Constraints

University

20 Qs

LOGICAL THINKING

LOGICAL THINKING

University

20 Qs

DBMS_U1_Quiz

DBMS_U1_Quiz

University

25 Qs

TES AWAL MODUL 5 PTLF 2024

TES AWAL MODUL 5 PTLF 2024

University

20 Qs

Automation Technology

Automation Technology

University

20 Qs

DhsfoaoiHSJDlkdfadgsa

DhsfoaoiHSJDlkdfadgsa

University

23 Qs

SQL Query and Constraint Quiz

SQL Query and Constraint Quiz

Assessment

Quiz

Engineering

University

Easy

Created by

mohammed ahmed

Used 3+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which query inserts a new student into the semestermarks table with all columns?

INSERT INTO semestermarks VALUES ('Ali', 101, 89, 3);

INSERT semestermarks (Ali, 101, 89, 3);

INSERT INTO semestermarks (Ali, 101, 89);

PUT INTO semestermarks VALUES ('Ali', 101, 89, 3);

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these updates the semester of rollnumber 202540 to 4?

UPDATE semestermarks SET 4 TO semester WHERE rollnumber = 202540;

UPDATE semestermarks SET semester = 4 WHERE rollnumber = 202540;

MODIFY semester = 4 FROM semestermarks WHERE rollnumber = 202540;

CHANGE semestermarks SET semester TO 4 WHERE rollnumber = 202540;

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which constraint prevents null entries in a column?

DEFAULT

UNIQUE

NOT NULL

PRIMARY

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which query will fetch records where marks are above 70?

SELECT * FROM semestermarks WHERE marks > 70;

SELECT * FROM semestermarks HAVING marks > 70;

SELECT marks FROM semestermarks IF marks > 70;

GET * FROM semestermarks WHERE marks > 70;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function returns total marks in the semestermarks table?

COUNT(marks)

AVG(marks)

SUM(marks)

MAX(marks)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which query groups the employees by department and returns average salary?

GROUP BY employee SELECT dept, AVG(salary);

SELECT AVG(salary), dept FROM employee;

SELECT dept, AVG(salary) FROM employee GROUP BY dept;

SELECT dept FROM employee GROUP salary BY;

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword allows you to check if a column value exists in a list?

IN

EXISTS

WHERE

ANY

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?