- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
$sql="select Id as Id from $table_work where SubstatusId=1 and StatusId=6 and ((UNIX_TIMESTAMP()-UNIX_TIMESTAMP(UpdTime))>25200)";
$result=mysql_query($sql) or die();
while($row = mysql_fetch_array($result)){
$sqlu="update $table_work set StatusId=5, SubstatusId=0 where Id=".$row["Id"];
mysql_query($sqlu) or die();
$sqlu="CALL set_history(".$row["Id"].",NULL,'Отказ роботом')"; ;Внимание Вопрос, что в черном ящике
mysql_query($sqlu) or die();
}
; а там просто INSERT 0_o
CREATE DEFINER=`vvejxoqw`@`localhost` PROCEDURE `set_last_time`(IN `UserId` int,IN `RegionId` int)
BEGIN
Insert LastGetQueue (UserId,RegionId,LastGetQueue) VALUE(UserId,RegionId,NOW());
END$