Hi all !
I have a access 2003 DB with one table, for ex. which contains the info about the users and their PCs like this:
| name | PC1 | PC2 | PC3 |
| Jack |Asus |Lenovo| HP |
|John | DELL | | |
|Anna | |Asus | |
Now I need a sql query code that return this info but distincted, like this:
| name | PC |
| Jack | Asus |
| |Lenovo|
| | HP |
|John | DELL |
|Anna | Asus |
or in the bad case like this:
| name | PC |
| Jack | Asus |
| Jack |Lenovo|
| Jack | HP |
|John | DELL |
|Anna | Asus |
Can anyone help me to do that ?
Please !!!