如何对列中的所有值减去相同的金额?
我想知道是否可以将相同的值(偏移量)减去表中特定列的所有值。
例如我有:
Col1
------
34
35
36
我想做到:
Col1
------
24
25
26
执行此操作的 SQL 代码是什么?
I was wondering if I can subtract the same value (offset) to all values of a specific column in my table.
For example I have:
Col1
------
34
35
36
I want to make it:
Col1
------
24
25
26
What's the SQL code for doing it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您这样做只是为了显示,还是想用减少的值更新表格?
在第一种情况下:
在第二种情况下(假设您要更新所有行):
Are you just doing this for display, or do you want to update the table with the reduced values?
In the first case:
In the second (assuming you want to update ALL rows):
怎么样:
How about: