I count the different x in the table with :
create table tmp as 
select  distinct  x  from balance ;
select count(x) from tmp ;
How can i combine them into one simple sqlite command?
I count the different x in the table with :
create table tmp as 
select  distinct  x  from balance ;
select count(x) from tmp ;
How can i combine them into one simple sqlite command?
