atoti.directquery.external_tables module#

class atoti.ExternalTables#

Tables of an external database.

Example

>>> # Individual tables can be accessed with their name only if it is unique:
>>> my_table = tables["my_table"]
>>> # Or with a tuple with the schema name to differentiate the tables:
>>> my_table = tables["my_schema", "my_table"]
>>> # Or even a tuple starting with the database name:
>>> my_table = tables["my_db", "my_schema", "my_table"]