使用编程增加 SQL Server 中的值
我在 SQL Server 中有一个表,它有 3 个字段,
Id int identity(1,1)
thRead int
level int
现在这个表中有线程,如 1-5,所有线程都重复 5 次,如下所示:
1,1,1,1,1 2,2,2,2,2 3,3,3,3,3 4,4,4,4,4 5,5,5,5,5
现在我想更新级别,以便对于一组记录,它应该递增从零开始,另一组又从 0 开始,依此类推..
我想要如下表所示的输出....
1 0
1 1
1 2
1 3
1 4
2 0
2 1
2 2
2 3
2 4
3 0
3 1
3 2
3 3
3 4
请任何人都可以帮我解决这个问题...更新应该使用选择查询,因此无需输入线程手动,它应该自动更新
谢谢和问候 阿巴斯电气瓦拉
I have a table in SQL Server which has 3 fields,
Id int identity(1,1)
thRead int
level int
Now in this table there are threads, like 1-5, all are repeating 5times, like this:
1,1,1,1,1 2,2,2,2,2 3,3,3,3,3 4,4,4,4,4 5,5,5,5,5
Now I want to update level such that, for a group of records it should increment starting from zero, for another group again from 0 and so on..
I want the output like table below....
1 0
1 1
1 2
1 3
1 4
2 0
2 1
2 2
2 3
2 4
3 0
3 1
3 2
3 3
3 4
Please can anyone help me out with this... the update should be with select query so no need to enter thread manually, it should update automatically
Thanks and Regards
Abbas Electricwala
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一次性更新吗?如果是这样的话,这会起作用。
如果您想对新行持续执行此操作,那就更困难了。
Is this a one off update? If so this would work.
If you want to do this ongoing for new rows that is more difficult.
你可以试试这个
You can try this