我有一个有 10 列的表。表中的每一行最初都是我以这种格式收到的 JSON 对象。
{"mainEntity":
"atlasId": 1234567
"calculatedGeography": False
"calculatedIndustry" : False
"geography": "G:6J"
"isPublic" = False
"name" = XYZ, Inc
"permId" = 12345678987
primaryRic=""
type=corporation
}
我正在使用 jdbc 和 mysql 驱动程序。问题是我的插入语句看起来很长而且很丑(见下面的例子),因为列数很多。有没有办法解决这个问题或者这是唯一的方法。另外,有没有办法用jdbc同时插入多条记录?
"INSERT INTO table_name VALUES(1234567, False, False, "G:6J", False, "XYZ, Inc", 12345678987, "", corporation"