Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Questions  >  Consider the relation schema as follows.Emplo... Start Learning for Free
Consider the relation schema as follows.


Employee (employee-name, sheet, city)

Works (employee-name, company-name, salary)

Company (Company-name, city)

Manages (Employee-name, manager-name)


Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.

  • a)
    SELECT employee-name

    FROM employee, works, company

    WHERE salary between 17000 and 35500

  • b)
    SELECT employee-name

    FROM employee, works, company

    GROUP BY city having salary between 17000 and 35500

  • c)
    SELECT employee-name

    FROM employee, works, company

    GROUP BY company, city having salary between 17000 and 35500

  • d)
    SELECT employee-name

    FROM employee, works, company

    GROUP BY city having salary > = 17000 and 35500 salary ≤ 35500

Correct answer is option 'B'. Can you explain this answer?
Most Upvoted Answer
Consider the relation schema as follows.Employee (employee-name, sheet...
SELECT employee-name FROM employee, works, company GROUP BY company, city having salary between 17000 and 35500.
This SQL statement will select the name of all the employees those who are having salary between 17000 and 35500 from the relations employee, works and company in the same city.
Free Test
Community Answer
Consider the relation schema as follows.Employee (employee-name, sheet...
Between 17000 and 35500
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer?
Question Description
Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? for Computer Science Engineering (CSE) 2024 is part of Computer Science Engineering (CSE) preparation. The Question and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus. Information about Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? covers all topics & solutions for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer?.
Solutions for Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? in English & in Hindi are available as part of our courses for Computer Science Engineering (CSE). Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.
Here you can find the meaning of Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer?, a detailed solution for Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? has been provided alongside types of Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Consider the relation schema as follows.Employee (employee-name, sheet, city)Works (employee-name, company-name, salary)Company (Company-name, city)Manages (Employee-name, manager-name)Write a SQL query that gives the names of the employee who works in the same city and having salary greater than equal to 17000 and less than equal to 35500.a)SELECT employee-nameFROM employee, works, companyWHERE salary between 17000 and 35500b)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary between 17000 and 35500c)SELECT employee-nameFROM employee, works, companyGROUP BY company, city having salary between 17000 and 35500d)SELECT employee-nameFROM employee, works, companyGROUP BY city having salary > = 17000 and 35500 salary ≤ 35500Correct answer is option 'B'. Can you explain this answer? tests, examples and also practice Computer Science Engineering (CSE) tests.
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Explore Courses
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev