gpt4 book ai didi

date - 忽略星期六和星期日

转载 作者:太空宇宙 更新时间:2023-11-03 10:28:57 24 4
gpt4 key购买 nike

我正在从我的客户数据库 (mysql) 中提取过去十天的所有记录
$offset1 =strtotime("-10 天"); $date3=date("Y-m-d",$offset1);

SELECT * FROM customers WHERE date between '$date3' and '$date' AND customer.custid = '$custid' ORDER by date DESC

我想省略周六或周日的日期,并希望将其放入我的查询而不是 php

如有帮助谢谢

最佳答案

您可以使用 MySQL 中的 DayOfWeek 函数。

SELECT * 
FROM customers
WHERE date between '$date3' and '$date'
AND DayOfWeek(date) <> 1
AND DayOfWeek(date) <> 7
AND customer.custid = '$custid'
ORDER by date DESC

关于date - 忽略星期六和星期日,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2485140/

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