Could anybody please help me on SQL command?
I have a table (tbl_sActivity) that have below data:
user_id | client_id | act_status |
1 | 7 | cold |
1 | 7 | dealed |
22 | 5 | cold |
1 | 6 | cold |
1 | 6 | warm |
1 | 6 | hot |
1 | 6 | dealed |
1 | 8 | warm |
1 | 8 | dealed |
21 | 4 | warm |
21 | 4 | dealed |
The out put should be
user_id | Count_C_id |
1 | 3 |
21 | 1 |
22 | 1 |
I've searched from net and learnt that MS ACCESS cannot use COUNT(DISTINCT) function. So I'm stuck at this stage for days.