select
now() + 0,
count(*) as n
from
ipblocks
where
ipb_expiry !=... |
3 years ago |
select
now() + 0,
ipb_expiry
from
ipblocks
where
ipb_expiry !=... |
3 years ago |
select
count(*) as n
from
ipblocks
where
ipb_expiry != 'infinity' and... |
3 years ago |
select
now()
; |
3 years ago |
select
now() + 0
; |
3 years ago |
select
now( 0 ) + 0,
; |
3 years ago |
select
unix_timestamp(),
ipb_expiry
from
ipblocks
where
ipb_expiry... |
3 years ago |
select
count(*) as n
from
ipblocks
where
ipb_expiry != 'infinity' and... |
3 years ago |
select
count(*) as n
from
ipblocks
where
ipb_expiry != 'infinity'
; |
3 years ago |
select
ipb_expiry
from
ipblocks
where
ipb_expiry != 'infinity'
limit 5
; |
3 years ago |
select
count(*) as n
from
ipblocks
where
ipb_expiry != 'infinity' and... |
3 years ago |
select
count(*) as n
from
ipblocks
where
ipb_expiry < unix_timestamp()
; |
3 years ago |