Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 oracle 中处理序列时,我们可能会对这些序列值的存储位置感到困惑。所以这就是答案。
为此,您需要编写以下查询:
从 user_sequences 中选择 Last_Number Numm 其中 sequence_name='Name_Of_Sequence';
或者
select * from user_sequences where sequence_name='Name_Of_Sequence';
在此输出中,只需查看 Last_Number 列,这只是与该序列关联的值。
要查看所有现有序列,请编写以下查询:
从 user_sequences 中选择 *;