About 206,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 · What Are SQL Sequences? SQL sequences are user-defined database objects designed to generate a series of numeric values. Unlike identity columns, which are tightly …

  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. 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.

  5. 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 …

  6. SQL - Using Sequences - Online Tutorials Library

    Sequences in SQL are database objects that generate a sequence of unique integer values. They are frequently used in databases because many applications require that each row in a table …

  7. Sequence with examples in SQL Server - GeeksforGeeks

    Jul 15, 2025 · A Sequence in SQL Server is a user-defined, schema-bound object that generates a sequence of numeric values according to a set of rules. It is used primarily for generating …

  8. SQL SEQUENCE in PostgreSQL: one ID generator for multiple tables

    Nov 14, 2025 · A sequence is a special database object that generates an ordered series of unique numeric values according to a defined rule. Think of an automatic document numbering …

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

    May 19, 2025 · This article explores the syntax, use cases, and best practices for using sequences in SQL, with practical examples and guidance for different database systems.

  10. 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.