是否有像 IDENTITY 列类型的 TSQL 字母数字?

2021-09-10 00:00:00 tsql sql-server

是否有类似 IDENTITY 的列类型可以生成字母数字值?像023904F?

Is there an IDENTITY like column type that generates alphanumeric values? Like 023904F?

推荐答案

YES,uniqueidentifier 列,但是长度是 36 个字符,试试这个:

YES, the uniqueidentifier column, but it is 36 chars in length, try this:

select newid()

输出

------------------------------------
53F2103C-C357-429E-A0E8-2DC26666638F

(1 row(s) affected)

你可以像这样使用它:

select LEFT(newid(),7)

并得到:

-------
50D0F58

(1 row(s) affected)

但这不会是唯一的.

相关文章