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.
我有一个存储单词的表,有树列 id、word 和 count,word 是唯一键。
如果单词已经插入,我只想添加 +1 来计数。我找不到任何 sql 语句,(我可能不知道在 google 上搜索什么)
当我将新数据插入单词时,我想将 +1 添加到计数列。我不确定它是否需要此操作的唯一列。
你们能帮帮我吗?问候!
INSERT INTO tablename (word, count) VALUES ("TheWord", 1) ON DUPLICATE KEY UPDATE count = count + 1
我相信这就是您正在寻找的。如果单词是唯一的,是否有任何理由拥有 id 列?