๐
Get row counts for all Redshift tables
The following query will return a list of results containing each table's name and row count:
sql
select name, sum(rows) as rowsfrom stv_tbl_permgroup by 1
The following query will return a list of results containing each table's name and row count:
select name, sum(rows) as rowsfrom stv_tbl_permgroup by 1