如何根据一周的下一个周日查找数据

发布于 2024-09-01 13:28:12 字数 44 浏览 5 评论 0原文

我需要根据一周的下一个周日从 MySQL 查找一行数据。有人知道怎么做吗?

I need to lookup a row of data from MySQL based on the next Sunday of the week. Anyone know how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深府石板幽径 2024-09-08 13:28:12

您可以使用 PHP 确定下周日,然后将其传递给您的查询。

$nextSunday = date("Y-m-d", strtotime('next sunday'));

如果您需要某个日期的下周日,

$date = strtotime('2010-07-01');
$nextSunday = date("Y-m-d", strtotime('next sunday', $date));

请将此日期提供给您的查询

$result = mysql_query("SELECT * FROM table WHERE date = '$date'")

you can determine the next sunday using PHP then pass it to your query..

$nextSunday = date("Y-m-d", strtotime('next sunday'));

if you need the next sunday from a certain date

$date = strtotime('2010-07-01');
$nextSunday = date("Y-m-d", strtotime('next sunday', $date));

The provide this date to your query

$result = mysql_query("SELECT * FROM table WHERE date = '$date'")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文