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. | Any | None |
Return Value
Union[Dict[str, Any], List[Dict[str, Any]]]