摘要:
sqlserver 表记录数 select a.name as 表名,max(b.rows) as 记录条数 from sysobjects a ,sysindexes b where a.id=b.id and a.xtype='u' and b.rows > 0group by a.name o 阅读全文
摘要:
内联函数 有的时候可以优化汇编代码,如下,应该是把Max 直接优化了,找不到 call max function Max(a,b:integer): Integer;inline;begin if a < b then Result := b else Result := a;end; proced 阅读全文