是否有类似 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)
但这不会是唯一的.
这篇关于是否有像 IDENTITY 列类型的 TSQL 字母数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
修改现有小数位信息Modify Existing decimal places info(修改现有小数位信息)
多次指定相关名称“CONVERT"The correlation name #39;CONVERT#39; is specified multiple times(多次指定相关名称“CONVERT)
T-SQL 左连接不返回空列T-SQL left join not returning null columns(T-SQL 左连接不返回空列)
从逗号或管道运算符字符串中删除重复项remove duplicates from comma or pipeline operator string(从逗号或管道运算符字符串中删除重复项)
将迭代查询更改为基于关系集的查询Change an iterative query to a relational set-based query(将迭代查询更改为基于关系集的查询)
将零连接到 sql server 选择值仍然显示 4 位而不是concatenate a zero onto sql server select value shows 4 digits still and not 5(将零连接到 sql server 选择值仍然显示 4 位而不是 5)