So I have 4 subtables all the same schema and I want to show all rows between all the tables so I can have redash convert it into a chart
My current idea was to just have chain of union all, but for some reason, clickhouse doesnt think it exists
select * from first
union all
select * from second
results in: "Exception: Table second doesn't exist"
However
select * from second
works just fine.
is there something that I am missing from this logic?