Guest User

Untitled

a guest
Jun 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.32 KB | None | 0 0
  1. select
  2.     innocent_townsfolk,
  3.     time_thing,
  4.     innocent_townsfolk / time_thing as oh_the_humanity
  5. from (
  6.     select
  7.         count(*) as innocent_townsfolk,
  8.         floor(exp(floor(ln((unix_timestamp(now()) - last_updated))))) as time_thing
  9.     from
  10.         kraken
  11.     group by
  12.         time_thing
  13. ) a
Add Comment
Please, Sign In to add comment