SELECT name
FROM instructor
WHERE salary <= 100000 AND salary >= 90000;
This query can be replaced by which of the following ?
SELECT name
FROM instructor
WHERE salary BETWEEN 90000 AND 100000;
SELECT name
FROM employee
WHERE salary <= 90000 AND salary>=100000;
SELECT name
FROM employee
WHERE salary BETWEEN 90000 AND 100000;
SELECT name
FROM instructor
WHERE salary BETWEEN 100000 AND 90000;
Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api
# | Quiz |
---|---|
1
Discuss
|
The _______operation performs a set union of two “similarly structured” tables
Solution |
2
Discuss
|
The _________ provides a set of operations that take one or more relations as input and return a relation as an output.
Solution |
3
Discuss
|
The tuples of the relations can be of ________ order.
Solution |
4
Discuss
|
A domain is atomic if elements of the domain are considered to be ____________ units.
Solution |
5
Discuss
|
By default, the order by clause lists items in ______ order.
Solution |
6
Discuss
|
Department (dept name, building, budget) and Employee (employee_id, name, dept name, salary)
Solution |
7
Discuss
|
Which keyword must be used here to rename the field name?
Solution |
8
Discuss
|
Course(course_id,sec_id,semester) Here the course_id,sec_id and semester are __________ and course is a _________
Solution |
9
Discuss
|
The result which the operation contains all pairs of tuples from the two relations, regardless of whether their attribute values match.
Solution |
10
Discuss
|
The term attribute refers to a ___________ of a table.
Solution |
# | Quiz |
Copyright © 2020 Inovatik - All rights reserved