Here's a little bit of background. I have a database like this:
uristem username
+------------+ +-------+
| /uristem/1 | | user1 |
| /uristem/2 | | user2 |
| /uristem/3 | | user3 |
| /uristem/3 | | user4 |
| /uristem/1 | | user1 |
| /uristem/7 | | user5 |
| /uristem/5 | | user3 |
| /uristem/5 | | user1 |
| /uristem/3 | | user1 |
+------------+ +-------+
I need to count the number of (unique) users that hit /uristem/3. What operators can I use in a query to do this?
Your help is greatly appreciated,
Thanks!