INSERT
页面包含使用SQL语句使用各种编程语言将数据写入Hubble的说明。
准备工作
在阅读本页之前,请执行以下操作:
插入多行时,单个多行插入语句比多个单行语句快。
create table emp (id INT PRIMARY KEY, aml INT);
insert into emp (id, aml) VALUES (1, 100), (2, 200);
// 'db' is an open database connection
if _, err := db.Exec(
"insert into emp (id, aml) VALUES (1, 100), (2, 200)"); err != nil {
log.Fatal(err)
}
try (Connection connection = ds.getConnection()) {
connection.setAutoCommit(false);
PreparedStatement pstmt = connection.prepareStatement("insert into emp (id, aml) VALUES (? , ?)");
pstmt.setInt(1, 100);
pstmt.setInt(2, 200);
pstmt.addBatch();
pstmt.executeBatch();
connection.commit();
} catch (SQLException e) {
System.out.printf("sql state = [%s]\ncause = [%s]\nmessage = [%s]\n",
e.getSQLState(), e.getCause(), e.getMessage());
}
with conn.cursor() as cur:
cur.execute('insert into emp (id, aml) VALUES (1, 100), (2, 200)')
conn.commit()
如果您需要快速将大量数据导入Hubble集群,请使用IMPORT
语句而不是从应用程序INSERT
。它会更快,因为它完全绕过SQL层并使用低级命令直接写入数据存储。