Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

count column of tables psql

1
2
3
4
select table_name, count(*) as column_count 
from information_schema."columns"
where table_schema = 'public' 
GROUP by table_name order by column_count desc;
Source by shekhargulati.com #
 
PREVIOUS NEXT
Tagged: #count #column #tables #psql
ADD COMMENT
Topic
Name
6+3 =