About 245,000 results
Open links in new tab
  1. CREATE SEQUENCE (Transact-SQL) - SQL Server | Microsoft Learn

    Sep 26, 2025 · Creates a sequence object and specifies its properties. A sequence is a user-defined schema bound object that generates a sequence of numeric values according to the …

  2. SQL | SEQUENCES - GeeksforGeeks

    Jan 13, 2025 · SQL sequences offer flexibility, performance, and ease of use, making them indispensable in managing and organizing data in large-scale applications. In this article, we …

  3. CREATE SEQUENCE - Oracle Help Center

    Use the CREATE SEQUENCE statement to create a sequence, which is a database object from which multiple users may generate unique integers. You can use sequences to automatically …

  4. SQL Server: Create and Use Sequence - TutorialsTeacher.com

    In SQL Server, the sequence is a schema-bound object that generates a sequence of numbers either in ascending or descending order in a defined interval. It can be configured to restart …

  5. PostgreSQL: Documentation: 18: CREATE SEQUENCE

    Nov 13, 2025 · Description CREATE SEQUENCE creates a new sequence number generator. This involves creating and initializing a new special single-row table with the name name. The …

  6. SQL Server: Sequences (Autonumber) - TechOnTheNet

    Learn how to create and drop sequences in SQL Server (Transact-SQL) with syntax and examples. In SQL Server, you can create an autonumber field by using sequences.

  7. An Essential Guide to SQL Server Sequence By Practical Examples

    In this tutorial, you will learn about the SQL Server Sequence objects to generate a sequence of numeric values based on a specified specification.

  8. How to Create a Sequence in SQL Server - Database.Guide

    Dec 14, 2022 · When creating a sequence, we can specify how big each increment should be, and we can also make it a decrementing sequence if required. We can also create sequences …

  9. SQL Sequence | SQL Sequence 2 Easy Examples - Pr Software …

    Mar 30, 2024 · In this Tutorial we will see what Sequence is, how to create sequence, how to fetch sequence and how to use SQL sequences with example. What is SQL Sequence? A …

  10. Sequence in SQL: What It Is and How to Use It Easily

    May 19, 2025 · Summary: A sequence in SQL is a schema-bound object that generates unique numeric values, commonly used for primary keys or custom identifiers. Sequences offer …