gpt4 book ai didi

mysql - 从我的表格中选择日期 = 特定日期

转载 作者:行者123 更新时间:2023-11-29 03:24:59 26 4
gpt4 key购买 nike

我在表中的日期是 TIMESTAMP 类似这样的 2016-05-28 18:39:00

现在我尝试从表中选择日期 = 2016-05-28

这是我的问题

    $getReport = $db->prepare('SELECT a.proId, a.userId, DATE(a.date), a.status, a.canceledBy, b.id, b.pName, b.pPrice FROM purchaseshistory AS a INNER JOIN products AS b ON(a.proId=b.id) WHERE a.date=?');

$getReport->bind_param('i', $dateOfBirth);
$getReport->execute();
$getReport->bind_result($proId, $userId, $date, $status, $canceledBy, $id, $pName, $pPrice);
$getReport->store_result();
while ($getReport->fetch()) {

日期来自这里

$dateOfBirth = $_POST['dateOfBirth'];

结果为空

最佳答案

你可能需要一个正确的日期格式

SELECT a.proId, a.userId, 
DATE(a.date), a.status, a.canceledBy, b.id, b.pName, b.pPrice
FROM purchaseshistory AS a
INNER JOIN products AS b ON(a.proId=b.id)
WHERE date_format(a.date,'%Y-%m-%d') = ?

关于mysql - 从我的表格中选择日期 = 特定日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37931192/

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