Ended Official BYC Contest - Guess When We'll Reach 400,000 Members!

Status
Not open for further replies.
Pics
Lol was wondering if kinda like the price is right rule applies if your bid is over it doesn’t count lol
Well well well...guess what we will have to be more specific about in the rules for next time?


I should be making a list.
 
He wrote this:
Banned aren't counted either.
THANKS!!!

I'll need to adjust the query!

This is valid and not-banned registrations per hour for the first half of April :)

Code:
SELECT count(*) AS total, HOUR(FROM_UNIXTIME(`register_date`)) AS hour
FROM xf_user
WHERE  `user_state` = 'valid' 
AND  `is_banned` = 0
AND DATE(from_unixtime(register_date)) BETWEEN '2020-04-01' AND '2020-04-15'
GROUP BY HOUR(FROM_UNIXTIME(`register_date`))

RegistrationsHour
1680
1601
1312
1403
934
825
396
447
348
419
5210
7711
8312
15513
15914
16915
16916
16817
16218
16319
17920
15921
16722
14823
TOTAL: 2942
 
THANKS!!!

I'll need to adjust the query!

This is valid and not-banned registrations per hour for the first half of April :)

Code:
SELECT count(*) AS total, HOUR(FROM_UNIXTIME(`register_date`)) AS hour
FROM xf_user
WHERE  `user_state` = 'valid'
AND  `is_banned` = 0
AND DATE(from_unixtime(register_date)) BETWEEN '2020-04-01' AND '2020-04-15'
GROUP BY HOUR(FROM_UNIXTIME(`register_date`))

RegistrationsHour
1680
1601
1312
1403
934
825
396
447
348
419
5210
7711
8312
15513
15914
16915
16916
16817
16218
16319
17920
15921
16722
14823
TOTAL: 2942
What was April last year? :pop
 
Wait a minute...
Isn't 10:00 p.m. closer to midnight than 5:00 a.m. is?
Lol was wondering if kinda like the price is right rule applies if your bid is over it doesn’t count lol

I actually read the rules and it says closest BEFORE or AFTER so get outta here with your price is right rules haha
 
THANKS!!!

I'll need to adjust the query!

This is valid and not-banned registrations per hour for the first half of April :)

Code:
SELECT count(*) AS total, HOUR(FROM_UNIXTIME(`register_date`)) AS hour
FROM xf_user
WHERE  `user_state` = 'valid'
AND  `is_banned` = 0
AND DATE(from_unixtime(register_date)) BETWEEN '2020-04-01' AND '2020-04-15'
GROUP BY HOUR(FROM_UNIXTIME(`register_date`))

RegistrationsHour
1680
1601
1312
1403
934
825
396
447
348
419
5210
7711
8312
15513
15914
16915
16916
16817
16218
16319
17920
15921
16722
14823
TOTAL: 2942
Yeah, restricting it to users in a valid state should ensure that it only includes users whom are also counted in the statistics.
 
Status
Not open for further replies.

New posts New threads Active threads

Back
Top Bottom