gpt4 book ai didi

PHP MySQL : storing only 1 data at time period

转载 作者:行者123 更新时间:2023-11-30 23:20:21 26 4
gpt4 key购买 nike

我想知道是否有人可以建议一种在一段时间内将一个数据存储在 mysql 数据库中的好方法?

请注意,我指的是一段时间,而不仅仅是日期时间。像.. 一个小时。或者一天半。或者两周。或者一年。

具体来说,如果我有一段时间,在上午 8 点到晚上 10 点,上午 10 点到中午 12 点,中午 12 点到下午 14 点,我只想每两个小时存储一个时间段数据,

我可以在 php 或 mysql 中这样做吗?

最佳答案

检查这个:

timestamp 类型的新列添加到数据库的表中。

通过此技巧使用您的 PHP 技能:

$sql = "SELECT $timestamp FROM $table ORDER BY $timestamp DESC LIMIT 1";

$result = mysqli_query($conection, "$sql");

if (/*the hour now*/ != /*the hour on $result*/) {
// allow to store data
} else {
// don't allow to store data
}

剩下的就做吧,上面的代码如果有错误我都没好好复习一下。只需使用您的编程技能..

“但是,任何人都可以通过修改来改进这个答案。”

关于PHP MySQL : storing only 1 data at time period,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15800386/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com