In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
Editor to share with you an example of the use of sequences in SQL, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!
1. Grammar
Create sequence dept_deptno
Increment by 1
Start with 91
Maxvalue 100
Nocache
Nocycle
Increment by n: step size, how much does it increase each time? default is 1.
Start with n: initial value, default 1
Maximum value of maxvalue ascending sequence. There is no maximum by default.
Minimum value of minvalue descending sequence. There is no minimum by default.
Cycle: after reaching the maximum value, there is a loop. Cycle cannot be used in primary key columns. Default nocycle. The initial beginning after the loop starts at 1, no matter how the original value is set.
Cache: how much is cached. Default is 20. To improve performance, oracle sends out sequence values in batches in advance and caches them so that they can be sent to users.
2. Pseudo column
Nextval: next sequence value
Select dept_deptno.nextval from dual
Currval: current sequence value. The first access is to have no current sequence value.
Select dept_deptno.currval from dual
3. View
USER_SEQUENCE
4. Modify and delete
ALTER (syntax is similar to create statement)
DROP
The above is all the content of the article "examples of the use of sequences in SQL". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.