List Recent Sessions

select s.id, a.username, s.start_time, s.end_time,
       s.client_ip, s.country_code, s.city
from ores.sessions s
join ores.accounts a on a.id = s.account_id
  and a.valid_to = '9999-12-31 23:59:59'::timestamptz
order by s.start_time desc
limit 20;

Emacs 29.3 (Org mode 9.6.15)