我想在 php 项目中使用cron 作业更新 mysql 数据库。下面是我想每年运行的一段代码。我曾尝试在 mysql 中使用事件调度程序,但失败了。
$stud="select * from student_class where class<4";
while ($row=mysql_fetch_array($stud))
{
$sql = "INSERT into student class(id,student_id,class,year) values('','{$row
['student_id']}','{$row['class']}','{$row['year']}+1')" ;
mysql_query($sql);
}
谁能帮忙?