August 2017
Beginner to intermediate
284 pages
6h 51m
English
Run the following command on the MySQL console to calculate the count for each operating system:
mysql> select os,count(*) from apachelog group by os; +-------+----------+ | os | count(*) | +-------+----------+ | WinXP | 6929 | +-------+----------+ 1 row in set (0.00 sec)
Read now
Unlock full access