识别身份列?

发布于 2024-07-26 13:09:21 字数 466 浏览 3 评论 0原文

我发现如何使用此查询确定哪些列是给定表的主键列:

 SELECT CONSTRAINT_NAME, COLUMN_NAME
 FROM
 INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE
 WHERE TABLE_NAME='tablename_here' AND
 CONSTRAINT_NAME LIKE 'PK_%'

我可以使用此查询找到身份种子和增量是什么:

SELECT IDENT_SEED('tablename_here'), IDENT_INCR('tablename_here')

我无法使用约束信息,因为主键约束可以跨多个列。 我似乎找不到任何 Transact SQL 函数来提供我的身份信息。

有人可以帮助我了解如何查找身份信息吗?

我正在使用 SQL Server 2000。

I have found that how to determine what columns are primary key column of a given table by using this query:

 SELECT CONSTRAINT_NAME, COLUMN_NAME
 FROM
 INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE
 WHERE TABLE_NAME='tablename_here' AND
 CONSTRAINT_NAME LIKE 'PK_%'

I can find , what the identity seed and increment is by using this query:

SELECT IDENT_SEED('tablename_here'), IDENT_INCR('tablename_here')

I cant use the constraint information, because a primary key constraint can be across multiple columns. And i cant seem to find any Transact SQL function to give my the identity information.

Can anybody help me to understand how to find the identity information?

I am using SQL Server 2000.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

写给空气的情书 2024-08-02 13:09:21

要查找给定表中的 IDENTITY 列,您可以使用以下命令:

SELECT * 
FROM INFORMATION_SCHEMA.COLUMNS 
WHERE TABLE_NAME='tablename_here' 
AND COLUMNPROPERTY(OBJECT_ID('tablename_here'),COLUMN_NAME,'IsIdentity') = 1

To find the IDENTITY column in a given table you can use this:

SELECT * 
FROM INFORMATION_SCHEMA.COLUMNS 
WHERE TABLE_NAME='tablename_here' 
AND COLUMNPROPERTY(OBJECT_ID('tablename_here'),COLUMN_NAME,'IsIdentity') = 1
甜心 2024-08-02 13:09:21

您可以使用 COLUMNPROPERTY 函数检查列是否使用标识财产。

You can use the COLUMNPROPERTY function to check whether a column uses the identity property.

SELECT sys.tables.name, sys.columns.name
FROM sys.tables
INNER JOIN sys.columns
ON sys.tables.object_id = sys.columns.object_id
WHERE is_identity = 1
AND sys.tables.name = 'MyTable'
SELECT sys.tables.name, sys.columns.name
FROM sys.tables
INNER JOIN sys.columns
ON sys.tables.object_id = sys.columns.object_id
WHERE is_identity = 1
AND sys.tables.name = 'MyTable'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文