我正在使用 sql 在 java 中工作。每当执行此查询时,它都会给我标题中提到的错误 try(PreparedStatement statement = conn.prepareStatement("INSERT INTO student_signup(q" + strId + ")" + "WHERE student_email="+email+"VALUES(?)")) { statement.setString(1, SelectedOption); statement.executeUpdate(); statement.close();这里有一点代码背景 int questionID=1; String strId = Integer.toString(questionID); String email = signInForm.getTxtEmail().getText();
添加回答
举报
0/150
提交
取消