InterviewSolution
Saved Bookmarks
| 1. |
Gives the table 'Player' with the following columns : Table : PlayerPCODEPOINTS1502NULL340Write the output of the following statements :(i) SELECT AVG (POINTS) FROM Player;(ii) SELECT COUNT (POINTS) FROM Player |
|
Answer» (i) AVG(POINTS)/45 (ii) COUNT(POINTS)/2 |
|