将30个分成三批

时间:2016-01-21 05:33:00

标签: mysql jsp

enter image description here

教室里有30名学生。我想通过在jsp中使用mysql查询将它们分成三批。

最初我使用了以下查询

connection = DriverManager.getConnection(connectionURL, "root", "student");
String queryString = "update student set batch=?,exam=? where studentid='"+studentid+"'  ";
pstatement = connection.prepareStatement(queryString);
pstatement.setString(1, batch);
pstatement.setString(2, exam);

1 个答案:

答案 0 :(得分:1)

我没有评论的权限,但有助于检查用户界面是否正确发送了第二个学生信息。查询对我来说没问题。