Consider a relation schema Computer(Model, Speed, Price) For each speed of computer above 800MHz, find the average price.

What will be an ideal response?



SELECT Speed, AVG(Price)
FROM Computer
WHERE Speed > 800
GROUP BY Speed;

Computer Science & Information Technology

You might also like to view...

The __________ sort algorithm sorts the first two elements of an array before inserting the remaining elements into that sorted part of the array?

a. bubble b. binary c. insertion d. selection

Computer Science & Information Technology

The main integrated circuit chip in your computer is the ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

A(n) ____________________ channel stores selections as masks.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A(n) _____ tag is HTML code that a webpage creator places in the page header for the specific purpose of informing web robots about the content of the page.?

A. ?meta B. ?search C. ?head D. ?spider

Computer Science & Information Technology