SELECT a.name, b.rows
FROM sys.sysobjects AS a INNER JOIN
sys.sysindexes AS b ON a.id = b.id
WHERE (b.indid IN (0, 1)) AND (a.type = 'u')
ORDER BY b.rows DESC

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2021-08-12
  • 2021-11-20
  • 2021-08-25
猜你喜欢
  • 2021-10-15
  • 2021-11-02
  • 2021-08-31
  • 2021-05-30
  • 2022-02-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案