Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个SELECT查询产生的整数列表。
SELECT
整数列表不是顺序的!例如,它可能包含如下值
1,2,3,8,12,17,20,23,28,30,...
我想从该列表中随机选择一个整数!我该怎么做呢?
根据您的陈述:“从该列表中随机选择一个整数”,您可以NEWID()在这种情况下使用。
NEWID()
SELECT TOP 1 colName FROM tableName ORDER BY NEWID()
其他链接