Hi there,
I have this db:
id domain page clicks
1 domain1.com /about_us 11
2 domain1.com /contact 22
3 domain2.com /about_us 33
3 domain2.com /some_page 44
..
Is it possible to do an automated query, without any PHP usage, to count all page clicks, but refer it to as the parent domain name?
The output that I'm trying to achieve:
domain1.com 33
domain2.com 77
Thanks ;)