PostgreSQLClient.
table
Create a table expression that references a particular a table called name in a PostgreSQL database called database.
name (str) – The name of the table to retrieve.
database (str, optional) – The database in which the table referred to by name resides. If None then the current_database is used.
None
current_database
schema (str, optional) – The schema in which the table resides. If None then the public schema is assumed.
table – A table expression.
TableExpr