I'm new to SQL and I need to count a unique record in the field. I tried..
select count (distinct ' ') as
but it didn't work the way I wanted it to.
Dbase example:
idnumb
88888
88888
88888
44444
44444
I need these results:
88888 3
44444 2
I know this is really easy..but I just can't get it.
Thanks!
select count (distinct ' ') as
but it didn't work the way I wanted it to.
Dbase example:
idnumb
88888
88888
88888
44444
44444
I need these results:
88888 3
44444 2
I know this is really easy..but I just can't get it.
Thanks!