gpt4 book ai didi

PHP 选择日期时间和文本

转载 作者:行者123 更新时间:2023-11-29 13:23:43 25 4
gpt4 key购买 nike

$result = $this->database->query(printf("SELECT * FROM 'events' WHERE ('date_time' = \"%s %s\" AND 'title' = \"%s\")", $date, $time, $title));

结果:

SELECT * FROM 'events' WHERE ('date_time' = "2013-12-06 18:00:00" AND 'title' = "Viikate, The Mutants");SQLSTATE[HY000]: General error: 1 near "106": syntax error

在查询中尝试使用;,在查询中尝试使用括号,在查询中尝试使用括号,在查询中尝试使用括号。

最佳答案

您在表列名称周围使用单引号 ',这是不正确的。将列名称用反引号括起来,或者根本不将它们括起来。我更喜欢使用反引号 ` 来分隔列名称。

$result = $this->database->query(printf("SELECT * FROM `events` WHERE (`date_time` = \"%s %s\" AND `title` = \"%s\")", $date, $time, $title));

关于PHP 选择日期时间和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20427497/

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