我想在的帮助下编写一个方法,以重置mySQL id列(为auto_increment)。 This is what I have right now
这是我的Java代码。
void updateIndex() {
try {
PreparedStatement preparedStatement = connection.prepareStatement("SET @num := 0;UPDATE table_name SET id = @num := (@num+1);ALTER TABLE table_name AUTO_INCREMENT =1;");
preparedStatement.executeQuery();
preparedStatement.close();
} catch (SQLException e) {
System.out.println("Can not update");
}
}