SELECT   a.name, b.rows

 FROM      sysobjects AS a INNER JOIN

           sysindexes AS b ON a.id = b.id

 WHERE   (a.type = 'u') AND (b.indid IN (0, 1))

ORDER BY b.rows DESc

相关文章:

  • 2022-12-23
  • 2021-11-07
  • 2021-10-16
  • 2021-12-17
  • 2021-08-21
猜你喜欢
  • 2021-07-09
  • 2021-11-06
  • 2022-12-23
  • 2021-10-19
  • 2021-10-19
  • 2021-11-17
  • 2021-11-07
相关资源
相似解决方案