我正在查看bulk_insert的示例。
# Create an ad-hoc table to use for the insert statement.
accounts_table = table('account',
column('id', Integer),
column('name', String),
column('create_date', Date)
)
我想bulk insert
调用一个特定的模式,kpi
但我不知道该怎么做。有人可以帮我吗?