摘要:
scope_indentity() 返回插入到同一作用域中(存储过程,.......)的indentity列内的最后一个indentity值例: declare @dt table( _id int identity(1,1), _name char(10))insert into @dt (_name) values('zhang')insert into @dt (_name) value... 阅读全文
摘要:
注:This method gets the record count much faster than select count(*) from table_name1、一般情况下,可以通过聚合函数Count实现查询出记录的总数 select count(*) as 记录总数 from table_name2、也可以通过查询系统表sysindexes实现 select row... 阅读全文