atoti.Table#
- final class atoti.Table#
In-memory table of a
Session
.>>> table = session.create_table( ... "Example", ... data_types={"Product": "String", "Quantity": "int"}, ... )
Listing all the column names:
>>> list(table) ['Product', 'Quantity']
Testing if the table has a given column:
>>> "Product" in table True >>> "Price" in table False
Delete some of the table's rows. |
|
Return at most n random rows of the table. |
|
Define a join between this source table and the target table. |
|
Names of the key columns of the table. |
|
Load data into the table. |
|
Load data into the table asynchronously. |
|
Name of the table. |
|
Query the table to retrieve some of its rows. |
|
The number of rows in the table. |
|
Scenario on which the table is. |
|
All the scenarios the table can be on. |
|
Stream data into the table. |