+1 vote
in Class 12 by kratos

Gives the table 'Player' with the following columns :

Table : Player

| PCODE | POINTS |
| 1 | 50 |
| 2 | NULL |
| 3 | 40 |

Write the output of the following statements :

(i) SELECT AVG (POINTS) FROM Player;

(ii) SELECT COUNT (POINTS) FROM Player

1 Answer

+2 votes
by kratos
 
Best answer

(i) AVG(POINTS)/45

(ii) COUNT(POINTS)/2

...