rahoUntitled Query
    select * from eth
    UNION
    select * from arb
    UNION
    select * from avax
    UNION
    select * from bsc
    UNION
    select * from op
    UNION
    select * from poly


    select
    eth.create_date,
    eth.cur_date,
    eth.days_old,
    eth.nonce,
    eth.from_address
    from eth
    UNION
    select * from arb
    arb.create_date,
    arb.cur_date,
    arb.days_old,
    arb.nonce,
    arb.from_address
    UNION
    select * from avax
    avax.create_date,
    avax.cur_date,
    avax.days_old,
    avax.nonce,
    avax.from_address
    UNION
    select * from bsc