I have this table
CREATE OR REPLACE TABLE hits (ip bigint, page VARCHAR(256), agent VARCHAR(1000),
date datetime)
and I want to calculate googlebot visit frequency for every page.
... WHERE agent like '%Googlebot%' group by page