This query gives me a list of 1085 records:
select distinct clone_id, stage from t_expression
but I don't need the list, I only need to count them
How can I do this?
This command works, but it is not what I want:
select count (distinct clone_id) from t_expression
These commands do not work:
select count (distinct clone_id, stage) from t_expression
select count distinct clone_id, stage from t_expression
select distinct count (clone_id, stage) from t_expression
Does anybody know the proper command??
I'm using DB2
select distinct clone_id, stage from t_expression
but I don't need the list, I only need to count them
How can I do this?
This command works, but it is not what I want:
select count (distinct clone_id) from t_expression
These commands do not work:
select count (distinct clone_id, stage) from t_expression
select count distinct clone_id, stage from t_expression
select distinct count (clone_id, stage) from t_expression
Does anybody know the proper command??
I'm using DB2