gpt4 book ai didi

JAVA & MySQL 不需要的额外列

转载 作者:太空宇宙 更新时间:2023-11-03 11:54:22 24 4
gpt4 key购买 nike

所以基本上我创建了一个数据库,里面只有一个表(只是为了测试目的),有 2 个元素(第一个 VARCHAR(255) 和 age INTEGER),如下所示:

protected void createTableExamPeriod() throws SQLException {
//STEP 4: Execute a query
System.out.println("Creating table in given database...");
stmt = conn.createStatement();

String drop = "DROP TABLE IF EXISTS REGISTRATION ";
String table = "CREATE TABLE IF NOT EXISTS REGISTRATION " +
" (first VARCHAR(255), " +
" age INTEGER )";

stmt.executeUpdate(drop);
stmt.executeUpdate(table);
populateExamPeriodTable();
System.out.println("Created table in given database...");
}

但是当我查看我的数据库时,有一个额外的列,称为“新建”: enter image description here

所以我的问题是,我如何摆脱这个额外的列,因为现在,我无法在其中插入“正确”数量的参数,因为这个额外的列,当我这样做时:

protected void populateExamPeriodTable() throws SQLException {
Statement stmt = conn.createStatement();
String insertSql = "INSERT REGISTRATION VALUES(3 + 2 + 5)";

stmt.executeUpdate(insertSql);
}

最佳答案

New 不是新列 PHPMyAdmin 显示它以图形方式添加新列

关于JAVA & MySQL 不需要的额外列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33786160/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com