WITH bond_user as (SELECT DISTINCT sender FROM anchor.bonds where block_timestamp<CURRENT_DATE-interval'3 months'),
borrows_user as (SELECT DISTINCT sender FROM anchor.borrows),
deposits_user as (SELECT DISTINCT sender FROM anchor.deposits)
select distinct * from(select * from bond_user union all select * from borrows_user union all select * from anchor.deposits) limit 10