• 0

[MySQL] Unique visitors


Question

Hi,

I'm writing a statistics script for work. I now have a table that is dynamically filled with every pageview on the site. What I want to do is extract all unique visites from that table. The 2 key things needed are te request time (datetime) and the ip address, I store these in that table.

The problem is that I want to count unique visitors as being a single hit from an IP in a 15 minute period, every other hit from that IP in a 15 minute time period should be discarded. I'm having tremendous problems with finding a solution for this. I've found multiple "solutions" for the problem but none of them work in MySQL or I'm unable to convert them to MySQL.

I hope someone can help me find a solution :)

Link to comment
https://www.neowin.net/forum/topic/663134-mysql-unique-visitors/
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Hi,

I'm writing a statistics script for work. I now have a table that is dynamically filled with every pageview on the site. What I want to do is extract all unique visites from that table. The 2 key things needed are te request time (datetime) and the ip address, I store these in that table.

The problem is that I want to count unique visitors as being a single hit from an IP in a 15 minute period, every other hit from that IP in a 15 minute time period should be discarded. I'm having tremendous problems with finding a solution for this. I've found multiple "solutions" for the problem but none of them work in MySQL or I'm unable to convert them to MySQL.

I hope someone can help me find a solution :)

You'll need a starting reference. have sql log the initial ip & timestamp. use this as your comparison to check as he/she proceeds thru the site by comparing now() to the recorded time. If 15 minutes expired, consider it a new connection and update the starting point.

You'll need to record/check this starting point on every page unless you have a log in required - people can jump into your site at any page unless you're redirecting them (i.e., checking for login credentials).

  • 0
You'll need a starting reference. have sql log the initial ip & timestamp. use this as your comparison to check as he/she proceeds thru the site by comparing now() to the recorded time. If 15 minutes expired, consider it a new connection and update the starting point.

You'll need to record/check this starting point on every page unless you have a log in required - people can jump into your site at any page unless you're redirecting them (i.e., checking for login credentials).

Yeah... what he said. :)

The problem with this is if you want to log EVERY visit to a page(maybe just to record all of the visits for another use) and narrow it down to what youre looking for this way wont do that.

If you added a column to you table as a flag for uniqueness then you can do it. Going back to what Rohdekill said, you can check for a visit within the last 15 mins and if one exists then the unique flag would be 0 and 1 if not. You would need to define the rules for this too...

Uniqueness could be defined as 15mins since the last time the person visited a page, which might mean if the person continues to click around your site for 45mins it would be logged as ONE unique visit. Or it could be defined as 15mins since the last unique visit which would return THREE in a 45 minute span.

The first option wouldnt include a check for the unique flag when you log the visits so..

SELECT T1.is_unique FROM
(SELECT IF(NOW()-MAX(timestamp) >= 15 MINUTES, true, false) AS is_unique FROM visitors WHERE visitor_ip = '$ip') T1
WHERE T1.visitor_ip = '$ip'

Should return true or false

The second option would be something like

SELECT T1.is_unique FROM
(SELECT IF(NOW()-MAX(timestamp) >= 15 MINUTES, true, false) AS is_unique FROM visitors WHERE visitor_ip = '$ip' AND unique_flag = 'true') T1

I forget which function will determine the 15 MINUTES, its something like INTERVAL() I think. You could probably even wrap the insert statement around this query somehow to do most of the work in SQL rather than running 2 seperate queries.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • The possibility that milk gathers back into a glass implies that gravity can be 'reversed'.
    • VidCoder 12.20 by Razvan Serea  VidCoder is a DVD/Blu-ray ripping and video transcoding application for Windows. It uses HandBrake as its encoding engine. Calling directly into the HandBrake library gives it a more rich UI than the official HandBrake Windows GUI. VidCoder can rip DVDs but does not defeat the CSS encryption found in most commercial DVDs. You’ll need the NET 8 Desktop Runtime. If you don’t have it, VidCoder will prompt you to download and install it. The Portable version is self-contained and does not require any .NET Runtime to be installed. You do not need to install HandBrake for VidCoder to work. Feature list: Multi-threaded MP4, MKV containers Completely integrated encoding pipeline: everything is in one process and no huge intermediate temporary files H.264, H.265, MPEG-4, MPEG-2, VP8, Theora video Hardware-accelerated encoding with AMD VCE, Nvidia NVENC and Intel QuickSync AAC, MP3, Vorbis, AC3, FLAC audio encoding and AAC/AC3/MP3/DTS/DTS-HD passthrough Target bitrate, size or quality for video 2-pass encoding Decomb, detelecine, deinterlace, rotate, reflect, chroma smooth, colorspace filters Powerful batch encoding with simultaneous encodes Customizable Pickers to automatically pick audio and subtitle tracks, destination, titles and more Instant source previews Creates small encoded preview clips Pause, resume encoding VidCoder 12.20 changes: Updated HandBrake core to 1.11.2. Download: VidCoder 12.20 | 47.0 MB (Open Source) Download: Portable VidCoder 12.19 | 89.3 MB Link: VidCoder Home Page | Github | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Too soon, I'm still not over this death!
    • Normally, I admit when a title is clickbait (unfortunately, it's become somewhat necessary to compete against AI-dominated news sections today), but in this case, all supported versions is implied and doesn't need to be spelled out in the title. Of course, I'm covering a Patch Tuesday update bug that is only available to supported Windows SKUs. All our coverage relates to supported Windows software and SKUs only unless we expressly state that it's "unsupported", "unofficial", or "third-party". I'm sorry, but supported/official SKUs don't need to be spelled out as such in every Neowin headline.
  • Recent Achievements

    • Week One Done
      Jordan Smith earned a badge
      Week One Done
    • Reacting Well
      BizSAR earned a badge
      Reacting Well
    • First Post
      AndreaB earned a badge
      First Post
    • Week One Done
      Huge Trailer earned a badge
      Week One Done
    • Week One Done
      Classifyskilleducation earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      593
    2. 2
      +Edouard
      185
    3. 3
      PsYcHoKiLLa
      77
    4. 4
      Michael Scrip
      73
    5. 5
      Steven P.
      66
  • Tell a friend

    Love Neowin? Tell a friend!