Here is what I want to accomplish:
I have a table that stores the computer name in one column and a a software title in another. The computer name can be listed numerous times based on how much software is installed. There are also multiple computers. So I could have Computer1 listed 10 times with 10 different pieces of software installed and computer2 listed 15 times with 15 different pieces of software installed.
I want to write a query that will query the table and return just the name of the computer and only return it once. That way I can populate a list with computers that have entries in that table.
Is it possible or should I look into redesigning so that the computers go in one table only once and in another table list the software and link it to the computers table?