How to count rows for all existing tables in Azure Synapse SQL Pool?
I'd like to generate a table that consists of list of all available tables and number of rows for each of them. Table Name Number of rows SCHEMA.TABLE_NAME1 30 SCHEMA.TABLE_NAME2 40 I've used the query below: select schema_name(tab.schema_id) + '.'…