Re: [sqlite] nested functions in select

2005-05-13 Thread Kurt Welgehausen
> ... select count(distinct(something)) ...

   http://www.sqlite.org/omitted.html

BTW, distinct is not a function.

Regards


[sqlite] nested functions in select

2005-05-12 Thread Doug Henry
I was trying to do something like: select count(distinct(something)) from 
table;

it seems this is invalid, although they work individually. Is there a way to 
get something like this to work in sqlite?

Thanks.