作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何仅更新仅在项目列中出现一次的那些项目的ID值?
表格1
id | item | price
-------------
10 | pen | 10
20 | pen | 10
30 | pen | 10
30 | copy | 10
10 | book | 10
10 | ball | 10
最佳答案
update table set
id = <whatever>
where
item in (select item from table group by item having count(*)=1)
关于sql - 如何更新仅显示一次的列中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50490796/
我是一名优秀的程序员,十分优秀!