gpt4 book ai didi

mysql - SQL 查询中的语法错误无法理解

转载 作者:太空宇宙 更新时间:2023-11-03 10:32:24 25 4
gpt4 key购买 nike

我遇到语法错误:17:38 附近出现语法错误

insert into tbl_otp('mobile', 'otp', 'exp') values (9932111111, 333333, 2019-04-09 17:38:34)

最佳答案

单引号表示字符串文字,因此您不应将它们用于列名。但是,您应该用引号将日期文字括起来:

insert into
tbl_otp(mobile, otp, exp) -- no quotes
values (9932111111, 333333, '2019-04-09 17:38:34') -- quotes

关于mysql - SQL 查询中的语法错误无法理解,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55597568/

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