查询table 下一个将要生成的id值
SELECT IDENT_CURRENT(‘table‘) + IDENT_INCR(‘table‘);
查询table当前最大的id值,自增序号
SELECT IDENT_CURRENT(‘table‘) ;
当前表设置的递增数,默认为1.
SELECT IDENT_INCR(‘table‘);
原文地址:https://www.cnblogs.com/ming-blogs/p/10625420.html
时间: 2024-11-09 00:15:34