gpt4 book ai didi

php - PHP和MYSQL中2个数据库表中的2次查询

转载 作者:行者123 更新时间:2023-11-29 19:04:56 25 4
gpt4 key购买 nike

在PHP和MYSQL中查询2个数据库表中的2次

这是我的数据库

| time1   | time2 |
| 15:00 | 17:00 |

然后我想显示查询代码中两个数据库表之间是否已经有时间

例如

 $a = '14:00';
$b = '16:00';
if($a <= $time1 && $b >=$time2){
echo 'it already has a time in the database';

}else{
echo 'dont have time in the database';
}

output will be
it already has a time in the database

提前致谢我想要查询该样本。再次感谢

最佳答案

WHERE '$a' >= time2 OR '$b' <= time1

关于php - PHP和MYSQL中2个数据库表中的2次查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43582876/

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