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.
可能重复: 如何在 PHP 中的 MSSQL 中获取插入 ID?
我会做 MYSQL
SHOW TABLE STATUS LIKE 'image'
在mssql中,叹息,我不知道该怎么做......
请指教.. :)
你可以试试这个来获得下一个身份。
SELECT IDENT_CURRENT('image') + IDENT_INCR('image')
你可以使用这个:
SELECT IDENT_CURRENT ('image')
然后加1得到下一个。
它比使用 max(id)+1 更好,因为最新的 id 可能已被删除
您可以使用最大值 +1。就像是
Select max(id)+1 from image;