gpt4 book ai didi

sql - 如何更新仅显示一次的列中的值?

转载 作者:行者123 更新时间:2023-12-03 17:56:35 24 4
gpt4 key购买 nike

如何仅更新仅在项目列中出现一次的那些项目的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/

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