可能重复:
在 SQL Server 中查找最小的未使用数字
我在 Sql server 中有这张表
ID | LetterID | LetterName
ID => int 和身份
LetterID => int and unique and NotNull
字母名称 => 字符串
LetterID
从我的 C# 应用程序和用户设置的编号中填充它。例如 1,2,3,4,5,...,100,..(每行增加一个单位)现在我LetterID
是100
但有时用户删除一行例如从表中删除行在哪里LetterID
,50
现在插入新行(在应用程序中)我建议他LetterID
选择50
,如何从表中获取丢失的数字?