如何用用户输入值 oracle 替换表列中的逗号分隔值
我在 oracle 中有一个表,其中有一列以逗号分隔值。我需要的是当用户输入一个值时,如果该值出现在任何行中,则应将其删除。
例如。
上号
123,234
56,123
如果用户输入 123,则第一列应该只有 234,第二行应该只有 56。
在oracle中我们如何做到这一点?
请帮忙
谢谢
I have a table in oracle with a column with comma separated values. What i need is when a user enters a value and if that value is present in any of the rows, it should be removed.
eg.
COL
123,234
56,123
If user enters 123, the 1st column should have only 234 and second row should have only 56.
How do we do this in oracle??
Please help
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您愿意,可以将“123”替换为参数。
但更好的方法是不存储逗号分隔值,而是创建一个详细表。如果您需要在逗号分隔列表中查找特定值,则无法使用索引以及其他限制。
[编辑]
误解了问题。您的意思是:
You can replace '123' with a parameter if you like.
But a better way would be not to store comma separated values, and create a detail table instead. If you need to look for a specific value within a comma separated list, you cannot make use of indices, amongst other limitations.
[edit]
Misunderstood the question. You meant this:
试试这个:
try this :