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» Output (i) AVG (POINTS) 30 (ii) COUNT (POINTS) 2 |
|