如何查找与表名关联的表的序列名
如何在Oracle sql中查找与mytable关联的序列名称 Select * user_sequwnces where table_name = 表名
How to find sequnce name which is associated to mytable in Oracle sql
Select * user_sequwnces where table_name =tablename
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用IDENTITY子句创建了一个表,那么序列名称将与表的对象ID对齐,例如
但是如果您只是使用自己的序列作为默认值,则不存在这种关系,例如
您甚至可以删除序列......并且只有当您稍后尝试使用它时才会成为问题,例如
If you created a table using the IDENTITY clause, then the sequence name will aligned with the object ID of the table, eg
But if you just use a sequence of your own as a default, there is no such relationship, eg
You can even drop the sequence ... and that only would become an issue later when you try to use it, eg