公共課考試{
公共靜態void main(String【】args)拋出ClassNotFoundException,
SQLException,IOException {
//我用的是MYSQL,妳可以改成自己的數據庫。
class . forname(“com . MySQL . JDBC . driver“);
Connection con =(Connection)driver manager . get Connection(
“JDBC:MySQL://“+“localhost:3306/test“,“root“,
“根”);
//自動事務提交
con . set auto commit(true);
statement ST = con . create statement();
buffered reader br = new buffered reader(new InputStreamReader(system . in));
System.out.println(“請輸入壹個或多個要刪除的學生編號,用英文逗號分隔:“);
string s = br . readline();//獲取用戶輸入的學號。
//刪除輸入的ID對應的學生信息。假設ID是學生編號,您可以將其更改為自己表中的壹個字段。
int num = st
。execute update(“delete from test where id in(“+s+“)“);
system . out . println(“A * * deleted“+num+“學生記錄“);
}
}