储存过程
Linevers
这个作者很懒,什么都没留下…
展开
-
mysql 存储过程实现历史报警信息去重(只粘贴代码,不解释了)
BEGIN DECLARE f1, f2, f3, f4, f5 ,f6 INT; DECLARE Done INT DEFAULT 0; DECLARE f11, f12, f13, f14, f15 ,f16 INT; DECLARE result int DEFAULT 0; DECLARE temp, temp1, temp2, temp3, te原创 2014-11-17 16:02:16 · 1394 阅读 · 1 评论 -
mysql 储存过程的一些问题
DELIMITER // drop procedure if exists queryMonthData; create procedure queryMonthData(IN time varchar(20)) begin select * from bsmu_powerandconfig_info where SaveTime like concat(time, '%') order原创 2014-11-03 18:57:40 · 493 阅读 · 0 评论