Back to Code Snippets
asrar
@aszenz-1
Top values of all columnsSQL
Get the top values by count for all columns, useful for searching and analysis
Execute this SQL
select approx_top_k(columns(*), 3) from tbl;
Copy code
asrar
Expand
Share link
Back to Code Snippets
@aszenz-1
Get the top values by count for all columns, useful for searching and analysis
select approx_top_k(columns(*), 3) from tbl;
Copy code
Expand
Share link