1、select * from table;
先查询出所有的学生的资料
获得一个二维数组$arr
for($i=0;$i
}
就是这个意思了,通用的方法,也不知道你用哪个框架啊,只好写这样了
更新语句:update tablename set tablename.age = tablename.age + 1
不更新只想看看结果:select tablename.age+1 as age from tablename
update T_student set age = age +1 where ......