/*
修改数据SQL语句
将编号为12的人的姓名改为叶十四
*/
String updSql = "update 超级数据库.. 超级表1 set 姓名='叶十四' where 编号='12'";
/*
修改数据SQL语句
将所有人的年龄+1
*/
String updSql = "update 超级数据库.. 超级表1 set 年龄=年龄+1";