gpt4 book ai didi

mysql - 我的 MySql 查询出了什么问题

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

SELECT WEEK(STR_TO_DATE( products_options_values, '%m-%d-%Y' ),1) as order_week,
YEAR(STR_TO_DATE( products_options_values, '%m-%d-%Y' ),1) as order_year
FROM orders_products_attributes

如果只是一周我没有收到任何错误,但一旦我尝试选择年份,它就会抛出

1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1) as order_year FROM orders_products_attributes'...

我做错了什么?

最佳答案

替换

YEAR(STR_TO_DATE( products_options_values, '%m-%d-%Y' ),1)

YEAR(STR_TO_DATE( products_options_values, '%m-%d-%Y' ))

YEAR() 函数没有第二个参数。或者你可以这样做

STR_TO_DATE( products_options_values, '%Y' )

关于mysql - 我的 MySql 查询出了什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17921682/

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