I was curious about Google Fusion Tables, and gave it a try.
  I uploaded the employees table from the employees test
  database, 16 MB of data, about 300,000 rows. Since the
  maximum limit per table is 100 MB, I expected interesting
  results.
  However, one of my first tests, with aggregation was quite
  disappointing.
  A simple group by gender was executed in about 30
  seconds.
  
  InnoDB on my laptop did a much better job:
select gender , count(*) from employees group by gender;
+--------+----------+
| gender | count(*) |
+--------+----------+
| M      |   179973 | 
| F      |   120051 |  …[Read more]