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

    Sep 26, 2025 · The sequence of numeric values is generated in an ascending or descending order at a defined interval and can be configured to restart (cycle) when exhausted. Sequences, unlike identity …

  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 bound to specific …

  3. 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 when the …

  4. 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 must …

  5. 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 flexibility, allowing …

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

    In SQL Server, a sequence is a user-defined schema-bound object that generates a sequence of numbers according to a specified specification. A sequence of numeric values can be in ascending …

  7. SQL Sequence | SQL Sequence 2 Easy Examples - Pr Software Solution

    Mar 30, 2024 · Sequence in SQL server is used to generate values automatically from defined starting number. In this Tutorial we will see what Sequence is, how to create sequence, how to fetch …

  8. SQL Sequences - Syntax and Use | Studytonight

    SQL Sequence is a feature supported by some database systems to produce unique and automatically incrementing value on demand.

  9. 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 unique …

  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. A sequence is an object in …