August 28, 2024SQLQuestion 123 Consider the following query : SELECT E.eno, COUNT(*) FROM Employees E GROUP BY E.eno If an index on eno is available, the query can […]
August 28, 2024SQLQuestion 120 Consider the following relational schema: Suppliers( sid:integer, sname:string, city:string, street:string ) Parts( pid:integer, pname:string, color:string) Catalog( sid:integer, pid:integer, cost:real) Consider the following relational query […]
August 28, 2024Database-Management-SystemQuestion 714 The command used to see the fields of the table along with their datatypes in SQL is A Select fields from dual where table=”MANAGER”; […]
August 28, 2024Database-Management-SystemQuestion 882 Consider the schema Sailors(sid, sname, rating, age) with the following data For the query SELECT S.rating, AVG(S.age) AS average FROM Sailors S Where S.age […]