insert
Insert one or more rows into a table.
Parameters
Name | Description | Type | Default |
---|---|---|---|
table (required) | Name of the table to insert into. | str | None |
values (required) | Dictionary of column-value pairs for a single row, or list of dictionaries for multiple rows. Union[dict, List[dict]]: The inserted row if values is a dict, or a list of all inserted rows if values is a list. | Any | None |