mysql 作业 定时执行存储过程

mysql中的事件是不是相当于MSSQL中的作业,能定时执行存储过程?如果是的话,一个事件中能不能像MSSQL中的作业一样,执行多个存储过程?另外,mysql的存储过程中... mysql中的事件是不是相当于MSSQL中的作业,能定时执行存储过程?
如果是的话,一个事件中能不能像MSSQL中的作业一样,执行多个存储过程?
另外,mysql的存储过程中调用另一个存储过程怎么做?
DECLARE firsttime datetime;
select firsttime = (select n_Record_Date from ((select * from t_Record where s_Device_IP = '192.168.1.153' and n_Record_Type in (1, 2) order by n_Record_Date limit 0, 1) union (select * from t_RecordLs where s_Device_IP = '192.168.1.153' and n_Record_Type in (1, 2) order by n_Record_Date limit 0, 1)) as temp order by n_Record_Date limit 0, 1);
这个语句哪里错了?
(select n_Record_Date from ((select * from t_Record where s_Device_IP = '192.168.1.153' and n_Record_Type in (1, 2) order by n_Record_Date limit 0, 1) union (select * from t_RecordLs where s_Device_IP = '192.168.1.153' and n_Record_Type in (1, 2) order by n_Record_Date limit 0, 1)) as temp order by n_Record_Date limit 0, 1)是从两张联合以来的表里读取第一条记录的一个字段。
然后把读取到的字段赋值给firsttime。
展开
 我来答
保持这种忧郁先生
2011-06-23 · TA获得超过266个赞
知道小有建树答主
回答量:471
采纳率:37%
帮助的人:123万
展开全部
具体怎么用我不清楚,事件是相当于mssql的作业

下面是调用存储过程

delimiter //
drop procedure if exists up_t1;

create procedure up_t1()
begin
select 'hello world';
end
;
create procedure up_t2()
begin
call up_t1();
select 'hello world2 ';
end;
//
追问
哦,谢谢,摸索了半天搞明白了。另外有个问题问一下。字数多,写不下,看上面补充问题。
追答
select (xxxx) into  firsttime;
wallis_w
2011-06-23
知道答主
回答量:32
采纳率:0%
帮助的人:5.4万
展开全部
看不明白
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式