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.
所以,我需要将代码 1、2、3、4 的值增加/减少 10%。但我不知道该怎么做,你们能帮我吗?我需要使用 SQL 模式来完成它。
.
注意:由于无法将表格粘贴到帖子上,因此我对其进行了 PrintScreen。
只是为了不让这个问题没有答案,我在这里添加了@Scotch在他的评论中发布的正确答案。还要感谢@Remou的帮助。
UPDATE TabProd SET PrecProd = (PrecProd * 1.1) WHERE Código IN (1,2,3,4)