Have you tried select distinct? Ex:
select distinct clientname, clientid, duration, totalduration
from tablename
You can get the sum by using this expression:
Sum(Fields!clientid.Value)
Or use this example to get distinct values for the clientid column: Custom Aggregates