Contents tagged with count
-
SQL Server Get Row Count of All Tables
Get all the tables with a count of their records with the following query:
CREATE TABLE #Temp
(
TableName VARCHAR(MAX),
Rows INT
);
EXEC sp_MSForEachTable @command1 = 'INSERT INTO # … more
-
Power BI: Display Percent rather than Count
https://community.powerbi.com/t5/Service/Display-Percent-rather-than-Count/td-p/67053