Extracts column names and tables used by the query. Automatically conduct column alias resolution, sub queries aliases resolution as well as tables aliases resolving.
Provides also a helper for normalization of SQL queries.
pip install sql-metadata
select id, name, sum(amount) as total_amt from schema.foo a
left join ( select id, name from schema.bar limit 10 ) b on a.id = b.id
-- left join schema_b.bars c on b.id = c.id
left join schema_b.foos c on b.id = c.id
group by id, name
limit 1000
['id', 'name', 'amount', 'schema.foo.id', 'schema_b.foos.id']
['schema.foo', 'schema.bar', 'schema_b.foos']
{'total_amt': 'amount'}
{'b': 'select id, name from schema.bar limit 10'}