You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2019. It is now read-only.
文档中如此描述:
插入同一个表的多条数据,此时如果数据库支持批量插入,那么会进行批量插入,但是这样每条记录就无法被自动赋予id值。如果数据库不支持批量插入,那么就会一条一条插入。
在 mysql 下,经过测试,开启 engine 中 engine.ShowSQL(),发现实现是通过
语句完成插入,而并非MySQL自带的 ,
insert <tablename> values (xxxxx) (xxxx)
语法。此处是在 MySQL 上实现有误还是说明有误?
The text was updated successfully, but these errors were encountered: