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.
我想知道是否有办法使用 SSMS 获取表的身份值。
我希望在表格的设计视图中找到它,但在那里找不到。
澄清事情:
你可以做:
select IDENT_CURRENT('MyTable')
这将向您显示上次为您的表创建的标识值。
在表格设计视图中是不可能的。但一种方法如下在 SSMS
右键单击表名
单击“编辑前 200 行”选项。这将打开前 200 条记录。
现在单击“显示 SQL 窗格”或按“Ctrl + 3”,这将显示当前查询
现在将该查询更改为这种方式 -Select top 1 id from yourTable order by id desc
Select top 1 id from yourTable order by id desc