Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是对mysql数据库的请求。 它给出错误截断不正确的 DOUBLE 值:'01100000000000' XUID varchar(20) utf8_bin LastMatched datetime 任何人都可以帮助解决这个问题吗? "UPDATE client_storrage SET LastMatched=UTC_TIMESTAMP() WHERE XUID=01100000000000"
"UPDATE client_storrage SET LastMatched=UTC_TIMESTAMP() WHERE XUID=01100000000000"
client_storrage
LastMatched
XUID
如果 XUID 是 avarchar您必须在查询中使用引号:
varchar
UPDATE client_storrage SET LastMatched = UTC_TIMESTAMP() WHERE XUID = '01100000000000'