gpt4 book ai didi

mySQL 错误 1064 : Clarification

转载 作者:行者123 更新时间:2023-11-29 22:52:57 26 4
gpt4 key购买 nike

我试图查找最后修改日期大于 2015-03-01 并且名称列为空的所有条目。这是我写的查询

SELECT * FROM `inventory` where date(date_modified) >= date '2015-03-01' AND where name is not null ORDER BY `inventory`.`date_modified`  DESC

当我尝试运行此查询时,出现错误 1064。

最佳答案

您需要在 date 参数两边加上括号。另外,您不要在 AND 之后重复 WHERE 关键字。

SELECT * FROM `inventory` 
where date(date_modified) >= date('2015-03-01')
AND name is not null
ORDER BY `inventory`.`date_modified` DESC

关于mySQL 错误 1064 : Clarification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28820764/

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