hi huys i ahve a table which i need to get only disticnt values from for example
select disticnt staffname,creationdate,etcet
from tablename
but when this happens duplicates appear to ..
ive tried
select etc etc from
tablename
Where staff IN (Select staff from staffviewsource Group by staff Having Count(*) =1) but thuis only brings out the staff with 1 row in the table for example in the table i have admin 32 times i just want him/her(pc) once.
Please help
select disticnt staffname,creationdate,etcet
from tablename
but when this happens duplicates appear to ..
ive tried
select etc etc from
tablename
Where staff IN (Select staff from staffviewsource Group by staff Having Count(*) =1) but thuis only brings out the staff with 1 row in the table for example in the table i have admin 32 times i just want him/her(pc) once.
Please help