Hello,
I am interested in follwing the pages' counters. All these solutions mentioned here insert the pages into the table.
What query can we use to get the quantity of every page?
thanx
You can use COUNT, something like
SELECT PageVisisted, Count(PageVisisted) AS TotalVisits FROM PageViews GROUP BY PageVisited