SQL Query and Constraint Quiz

SQL Query and Constraint Quiz

University

25 Qs

quiz-placeholder

Similar activities

Quiz sobre Comandos de Linux y Git

Quiz sobre Comandos de Linux y Git

University

25 Qs

UAS Desain Produk

UAS Desain Produk

University

25 Qs

ILP Pre Test

ILP Pre Test

University

25 Qs

HARSHA R QUIZ

HARSHA R QUIZ

University

25 Qs

MGMT Semi-Final Quiz 1

MGMT Semi-Final Quiz 1

University

20 Qs

Solidworks Basics Quiz for Students

Solidworks Basics Quiz for Students

10th Grade - University

20 Qs

soal

soal

10th Grade - University

21 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

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?