我在mysql中有以下表,其中包含三列:
| event_id | event_timestamp | event_duration |
现在我想编写一部分php代码,只要有空闲时间就会插入新事件,并且事件适合免费插槽。
基本上,当用户决定添加某个事件时,算法会检查(在下一个半小时内)是该事件的下一个空闲时隙,以及何时找到该时间 - 将其添加到具有正确时间戳的数据库中。 每个事件都有自己的持续时间,因此我们需要根据它来检查时间范围。
我考虑过编写以下SELECT查询:
select id, timestamp, duration
from table
where timestamp >= 'begin-boundary-time'
and timestamp + duration <= 'end-boundary-time'
然后遍历php代码中的选定结果,直到我找到一个空闲插槽 - 当我这样做时,我会在那里执行INSERT查询,但那是我卡住的部分。到目前为止我写的基本代码如下:
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT id, timestamp, duration FROM table
WHERE UNIX_TIMESTAMP(timestamp) >= NOW()
AND (UNIX_TIMESTAMP(timestamp)+duration) <= UNIX_TIMESTAMP(DATE_ADD(NOW(), INTERVAL 30 MINUTE))";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "<br> id: ". $row["id"]. " - timestamp: ". $row["timestamp"]. " " . $row["duration"] . "<br>";
//here I thought about processing data and putting INSERT query
}
} else {
echo "0 results";
}
$conn->close();
?>
有谁知道如何帮助我解决这个问题?
答案 0 :(得分:0)
我的示例选择所有事件(来自表事件(id,start,duration)),其后有足够的空闲时间用于新记录并计算Next和Delta值。 下一步 - 最近的下一个活动的开始时间。 Delta - 事件结束后的未使用时间(如果为null则为无限制)
SELECT * FROM
(SELECT e1.id, e1.start, e1.duration, e1.start+e1.duration as end,
(SELECT min(e2.start) as next from events as e2
where e2.start > e1.start+e1.duration) as next,
(SELECT min(e3.start)-e1.start-e1.duration as delta from events as e3
where e3.start > e1.start+e1.duration) as delta
FROM events e1) t
WHERE delta >= $yourDuration OR delta is null