CREATE TABLE temp (TableName VARCHAR (255), RowCnt INT) EXEC sp_MSforeachtable 'INSERT INTO temp SELECT ''?'',COUNT(*) FROM ?' SELECT TableName, RowCnt FROM temp ORDER BY TableName DROP TABLE temp
作者:淡淡-祥
本文链接:https://www.cnblogs.com/Brokenshelltao/p/11555816.html