How would you implement sequences in Microsoft SQL Server?(您将如何在 Microsoft SQL Server 中实现序列?)
问题描述
有没有人有在 SQL Server 中实现类似序列的好方法?
Does anyone have a good way of implementing something like a sequence in SQL server?
有时你只是不想使用 GUID,除了它们很丑的事实.也许您想要的序列不是数字?此外,插入一行然后询问数据库数字是什么似乎太hackish了.
Sometimes you just don't want to use a GUID, besides the fact that they are ugly as heck. Maybe the sequence you want isn't numeric? Besides, inserting a row and then asking the DB what the number is just seems so hackish.
推荐答案
Sql Server 2012 引入了 SEQUENCE 对象,它允许您生成与任何表无关的连续数值.
Sql Server 2012 has introduced SEQUENCE objects, which allow you to generate sequential numeric values not associated with any table.
创建它们很容易:
CREATE SEQUENCE Schema.SequenceName
AS int
INCREMENT BY 1 ;
插入前使用它们的示例:
An example of using them before insertion:
DECLARE @NextID int ;
SET @NextID = NEXT VALUE FOR Schema.SequenceName;
-- Some work happens
INSERT Schema.Orders (OrderID, Name, Qty)
VALUES (@NextID, 'Rim', 2) ;
请参阅我的博客以深入了解如何使用序列:
See my blog for an in-depth look at how to use sequences:
http://sqljunkieshare.com/2011/12/11/sequences-in-sql-server-2012-implementingmanaging-performance/
这篇关于您将如何在 Microsoft SQL Server 中实现序列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您将如何在 Microsoft SQL Server 中实现序列?
基础教程推荐
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- 无法解决整理冲突 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
