SQL:更新一个字段,循环使用另一个字段的唯一值
我有一张桌子,有两个文件夹。我想使用 ID_TASS
的每个唯一值的计数器更新 ID_ELEM
。 这应该是正确的输出表:
ID_TASS, ID_ELEM
1 , POL_1
1 , POL_2
1 , POL_3
2 , POL_1
2 , POL_2
3 , POL_1
4 , POL_1
4 , POL_2
4 , POL_3
4 , POL_4
请,欢迎任何帮助!谢谢
I've a table with two fileds. I want to update ID_ELEM
with a counter for each unique value of ID_TASS
.
This should be the correct output table:
ID_TASS, ID_ELEM
1 , POL_1
1 , POL_2
1 , POL_3
2 , POL_1
2 , POL_2
3 , POL_1
4 , POL_1
4 , POL_2
4 , POL_3
4 , POL_4
Please, any help is welcome! Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我完全确定它是否会起作用:
或者也许是这样:
I'm at all sure if it will work:
or maybe this:
非常丑陋,但可以在 mysql 上运行
very ugly but works on mysql
如果你想;
你可以(t-sql);
If you want;
You can (t-sql);