赞
踩
使用INSERT INTO table(字段1,字段1) VALUES (值1,值2);
INSERT INTO table(字段1,字段1) VALUES (值1,值2);
values 的拼接 不要直接使用+,而要使用效率更高的stringBuilder.append(sqlStrAdd);,尤其是长字符串的拼接。 1万条数据用+号拼接用时要7,8秒。 <
values 的拼接 不要直接使用+,而要使用效率更高的stringBuilder.append(sqlStrAdd);,尤其是长字符串的拼接。
+
stringBuilder.append(sqlStrAdd);
长字符串的拼接
1万条数据用+号拼接用时要7,8秒。