SQL Query and Constraint Quiz

SQL Query and Constraint Quiz

University

25 Qs

quiz-placeholder

Similar activities

Quiz on Beam Bearing Plates and Column Base Plates

Quiz on Beam Bearing Plates and Column Base Plates

University

20 Qs

Flight Plans & Google maps Tutorial

Flight Plans & Google maps Tutorial

7th Grade - University

20 Qs

Cuestionario de SQL para estudiantes

Cuestionario de SQL para estudiantes

University

20 Qs

Geology Quiz: Strike, Dip, and Rock Layers

Geology Quiz: Strike, Dip, and Rock Layers

University

25 Qs

N_ODD_2024-25

N_ODD_2024-25

University

24 Qs

Tech-fest

Tech-fest

University

20 Qs

SOM- Arbee

SOM- Arbee

University

20 Qs

3.1 - Features and Part Design

3.1 - Features and Part Design

10th Grade - University

22 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?