hypothesis database(mysql) have the following data:
+----+----------+------------+---------+------+------+------+
| id | username | birthday | address | age | mid | lid |
+----+----------+------------+---------+------+------+------+
| 1 | tom | 1536154211 | abc | 19 | NULL | 1 |
| 2 | Jan | 1536154211 | bdb | 12 | NULL | 2 |
| 3 | Xu | 1536154211 | aaa | 11 | NULL | 3 |
+----+----------+------------+---------+------+------+------+
How do I convert the data in the table like this statement:
INSERT INTO `tb_user` VALUES (1, 'tom', 1536154211, 'abc', 19, NULL, 1);
INSERT INTO `tb_user` VALUES (2, 'Jan', 1536154211, 'bdb', 12, NULL, 2);
INSERT INTO `tb_user` VALUES (3, 'Xu', 1536154211, 'aaa', 11, NULL, 3);
What do the JDBC or mysql how to do this