mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 07:16:17 +00:00
33 lines
816 B
SQL
33 lines
816 B
SQL
SELECT
|
|
date(dts) as day,
|
|
count(DISTINCT IFNULL(tid, ip)) as tids
|
|
FROM records
|
|
GROUP BY date(dts);
|
|
|
|
SELECT
|
|
(duration / 60) as minutes,
|
|
COUNT(IFNULL(tid,ip)) as total
|
|
FROM records
|
|
WHERE duration > 1 AND duration < (60 * 30)
|
|
GROUP BY duration / 60
|
|
HAVING total > 5;
|
|
|
|
SELECT referrer_host, count(DISTINCT IFNULL(tid, ip)) as tids, referrer
|
|
FROM records
|
|
WHERE date(dts) > date('now', '-1 month')
|
|
AND referrer_host != 'genderdysphoria.fyi'
|
|
GROUP BY referrer_host
|
|
ORDER BY tids DESC;
|
|
|
|
SELECT referrer_host, count(DISTINCT IFNULL(tid, ip)) as tids, referrer
|
|
FROM records
|
|
WHERE date(dts) > date('now', '-1 day')
|
|
AND INSTR(referrer_host, 'tiktok')
|
|
GROUP BY referrer_host
|
|
ORDER BY tids DESC;
|
|
|
|
SELECT COUNT(IFNULL(tid,ip)) as total, referrer
|
|
FROM records
|
|
WHERE referrer_host LIKE '%reddit.com'
|
|
GROUP BY referrer
|