mysql 让一个存储过程定时作业_MySQL
程序员文章站
2024-02-05 17:41:28
...
以下例子主要是实现简单的mysq 定时作业
1、在mysql 中建立一个数据库 test1
语句:create database test1
2、创建表examinfo
create table examinfo(
id int auto_increment not null,
endtime datetime,
primary key(id)
);
3 插入数据:
insert into examinfo values('1','2011-4-23 23:26:50');
4 创建存储过程test
上一篇: 怎么样保护MySQL中重要的数据
下一篇: PHP实现多文件上传的方法_PHP