如何在 Oracle 上使用 AUTO_INCRMENT 创建 id?
Oracle 中似乎没有 AUTO_INCRMENT 的概念,直到版本 11g(包括版本)。
如何在 Oracle 11g 中创建一个行为类似于自动增量的列?
It appears that there is no concept of AUTO_INCREMENT in Oracle, up until and including version 11g.
How can I create a column that behaves like auto increment in Oracle 11g?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(18)
这是自动增量异常/错误处理的完整解决方案,该解决方案向后兼容,并且适用于 11g 和 11g。 12c,特别是如果应用程序正在生产中。
请将“TABLE_NAME”替换为您适当的表名称
Here is complete solution w.r.t exception/error handling for auto increment, this solution is backward compatible and will work on 11g & 12c, specifically if application is in production.
Please replace 'TABLE_NAME' with your appropriate table name
oracle中创建自增查询。在下面的查询中,每当插入新行时, incrmnt 列值将自动递增
Query to create auto increment in oracle. In below query incrmnt column value will be auto incremented wheneever a new row is inserted
这就是我在现有表和列(名为 id)上执行此操作的方法:
This is how I did this on an existing table and column (named id):
创建序列:
添加触发器
第一步是在数据库中创建 SEQUENCE,它是多个用户可以访问以自动生成递增值的数据对象。正如文档中所讨论的,Oracle 中的序列可防止同时创建重复值,因为在生成每个序列项之前,多个用户实际上被迫“轮流”。 –
最后,我们将创建我们的序列,稍后将使用它来实际生成唯一的自动递增值。 –
虽然我们已经创建了表格并准备就绪,但到目前为止我们的序列只是坐在那里,但从未被使用过。这就是 TRIGGERS 的用武之地。与现代编程语言中的事件类似,Oracle 中的 TRIGGER 是一个存储过程,在特定事件发生时执行。通常,触发器将配置为在更新表或删除记录时触发,从而在必要时提供一些清理工作。 –
在我们的例子中,我们希望在 INSERT 到 CM_LC_FINAL_STATUS 表之前执行 TRIGGER,确保我们的 SEQUENCE 递增并且新值传递到我们的主键列。
Creating a Sequence:
Adding a Trigger
The first step is to create a SEQUENCE in your database, which is a data object that multiple users can access to automatically generate incremented values. As discussed in the documentation, a sequence in Oracle prevents duplicate values from being created simultaneously because multiple users are effectively forced to “take turns” before each sequential item is generated. –
Finally, we’ll create our SEQUENCE that will be utilized later to actually generate the unique, auto incremented value. –
While we have our table created and ready to go, our sequence is thus far just sitting there but never being put to use. This is where TRIGGERS come in. Similar to an event in modern programming languages, a TRIGGER in Oracle is a stored procedure that is executed when a particular event occurs. Typically a TRIGGER will be configured to fire when a table is updated or a record is deleted, providing a bit of cleanup when necessary. –
In our case, we want to execute our TRIGGER prior to INSERT into our CM_LC_FINAL_STATUS table, ensuring our SEQUENCE is incremented and that new value is passed onto our primary key column.
oracle 在 12c 中有序列和标识列
http://www.oracle-base.com/articles/12c/identity-columns-in-oracle-12cr1.php#identity-columns
我发现了这个,但不确定rdb 7是什么
http://www.oracle.com/technetwork/products /rdb/0307-identity-columns-128126.pdf
oracle has sequences AND identity columns in 12c
http://www.oracle-base.com/articles/12c/identity-columns-in-oracle-12cr1.php#identity-columns
I found this but not sure what rdb 7 is
http://www.oracle.com/technetwork/products/rdb/0307-identity-columns-128126.pdf
只是我只需将表名(AUDITLOGS)更改为您的表名,并将new.id更改为new.column_name
only I have to just change the table name (AUDITLOGS) with your table name and new.id with new.column_name
也许只需尝试这个简单的脚本:
http://www.hlavaj.sk/ai.php
结果是:
Maybe just try this simple script:
http://www.hlavaj.sk/ai.php
Result is:
从 Oracle 11g 开始,Oracle 中不存在“auto_increment”或“identity”列之类的东西。但是,您可以使用序列和触发器轻松对其进行建模:
表定义:
触发器定义:
更新:
IDENTITY
列现在可在 Oracle 12c 上使用:或指定起始值和增量值,同时防止对标识列进行任何插入(
GENERATED ALWAYS
)(同样,仅限 Oracle 12c+)或者,Oracle 12 还允许使用序列作为默认值:
There is no such thing as "auto_increment" or "identity" columns in Oracle as of Oracle 11g. However, you can model it easily with a sequence and a trigger:
Table definition:
Trigger definition:
UPDATE:
IDENTITY
column is now available on Oracle 12c:or specify starting and increment values, also preventing any insert into the identity column (
GENERATED ALWAYS
) (again, Oracle 12c+ only)Alternatively, Oracle 12 also allows to use a sequence as a default value:
SYS_GUID
返回一个 GUID——全局唯一的 ID。SYS_GUID
是RAW( 16)
。它不会生成递增的数值。如果要创建递增数字键,则需要创建序列。
然后,您可以在
INSERT
语句中使用该序列,或者可以定义一个触发器,使用该序列自动填充主键值。
如果您使用的是 Oracle 11.1 或更高版本,则可以稍微简化触发器
如果您确实想使用
SYS_GUID
SYS_GUID
returns a GUID-- a globally unique ID. ASYS_GUID
is aRAW(16)
. It does not generate an incrementing numeric value.If you want to create an incrementing numeric key, you'll want to create a sequence.
You would then either use that sequence in your
INSERT
statementOr you can define a trigger that automatically populates the primary key value using the sequence
If you are using Oracle 11.1 or later, you can simplify the trigger a bit
If you really want to use
SYS_GUID
在 Oracle 12c 及更高版本中,您可以执行类似的操作,
并且在 Oracle (Pre 12c) 中。
In Oracle 12c onward you could do something like,
And in Oracle (Pre 12c).
这里有三种风格:
x
是标识列。在每个示例中将FOO
替换为您的表名称。更新:
Oracle 12c 引入了这两个不依赖于触发器的变体:
第一个以传统方式使用序列;第二个在内部管理价值。
Here are three flavors:
RAW
datatype.x
is the identity column. SubstituteFOO
with your table name in each of the examples.update:
Oracle 12c introduces these two variants that don't depend on triggers:
The first one uses a sequence in the traditional way; the second manages the value internally.
Oracle Database 12c 引入了 Identity,一个自动增量(系统生成)列。
在以前的数据库版本中(直到11g),您通常通过创建序列和触发器来实现身份。
从 12c 开始,您可以创建自己的表并定义必须生成为标识的列。
Oracle Database 12c introduced Identity, an auto-incremental (system-generated) column.
In the previous database versions (until 11g), you usually implement an Identity by creating a Sequence and a Trigger.
From 12c onward, you can create your own Table and define the column that has to be generated as an Identity.
假设您指的是像 SQL Server 标识列这样的列?
在 Oracle 中,您可以使用 SEQUENCE 来实现相同的功能。我会看看是否能找到一个好的链接并将其发布在这里。
更新:看起来你自己找到了。无论如何,这是链接:
http://www.techonthenet.com/oracle/sequences.php
Assuming you mean a column like the SQL Server identity column?
In Oracle, you use a SEQUENCE to achieve the same functionality. I'll see if I can find a good link and post it here.
Update: looks like you found it yourself. Here is the link anyway:
http://www.techonthenet.com/oracle/sequences.php
当您想要任何人都可以轻松阅读/记住/理解的序列号时,可以使用
触发器
和序列
。但是如果你不想通过这种方式管理ID列(如emp_id),并且该列的值不是很大,你可以在建表时使用SYS_GUID()
来获得自动增量,例如这。现在,您的
emp_id
列将接受“全局唯一标识符值”。您可以通过忽略 emp_id 列来在表中插入值,如下所示。
因此,它将向您的
emp_id
列插入唯一值。Trigger
andSequence
can be used when you want serialized number that anyone can easily read/remember/understand. But if you don't want to manage ID Column (like emp_id) by this way, and value of this column is not much considerable, you can useSYS_GUID()
at Table Creation to get Auto Increment like this.Now your
emp_id
column will accept "globally unique identifier value".you can insert value in table by ignoring emp_id column like this.
So, it will insert unique value to your
emp_id
Column.它称为
Identity Columns
,并且仅在 Oracle Oracle 12c中可用,插入
Identity Columns
的示例如下你不能像下面那样插入
有用链接
it is called
Identity Columns
and it is available only from oracle Oracle 12cexample of insert into
Identity Columns
as belowyou can NOT do insert like below
useful link
从 Oracle 12c 开始,通过以下两种方式之一支持标识列:
序列 + 表 - 在此解决方案中,您仍然像平常一样创建序列,然后使用以下 DDL:
创建表MyTable
(ID 号默认 MyTable_Seq.NEXTVAL,
...)
仅表 - 在此解决方案中,没有显式指定顺序。您将使用以下 DDL:
CREATE TABLE MyTable (ID NUMBER GENERATED AS IDENTITY, ...)
如果您使用第一种方式,它与现有的处理方式向后兼容。第二个更简单一些,并且与其他 RDMS 系统更加一致。
Starting with Oracle 12c there is support for Identity columns in one of two ways:
Sequence + Table - In this solution you still create a sequence as you normally would, then you use the following DDL:
CREATE TABLE MyTable
(ID NUMBER DEFAULT MyTable_Seq.NEXTVAL,
...)
Table Only - In this solution no sequence is explicitly specified. You would use the following DDL:
CREATE TABLE MyTable (ID NUMBER GENERATED AS IDENTITY, ...)
If you use the first way it is backward compatible with the existing way of doing things. The second is a little more straightforward and is more inline with the rest of the RDMS systems out there.