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