In my database, I have this table:
----------------------------------------------------
| id | invoicenumber | productnumber |
----------------------------------------------------
| 1 | 1 | 45 |
| 2 | 1 | 53 |
| 3 | 1 | 25 |
| 4 | 2 | 12 |
| 5 | 2 | 32 |
| 6 | 2 | 73 |
| 7 | 2 | 99 |
| 8 | 3 | 10 |
| 9 | 3 | 11 |
----------------------------------------------------
The goal of my page is to display a list of links to each individual invoice:
Invoice 1
Invoice 2
Invoice 3
What MySQL query will perform this task?
Thanks
Regards