I have a MySQL table as below. I want to create a query to return multiple rows for each entry based on the count of "seed" as in my example. Is this possible on MySQL?
Table:
-------------------------------
| ID | Name | Seed |
| 1 | Entry 1 | 2 |
| 2 | Entry 2 | 3 |
| 3 | Entry 3 | 1 |
| 4 | Entry 4 | 2 |
-------------------------------
Results:
ID Name Seed
1 Entry 1 2
1 Entry 1 2
2 Entry 2 3
2 Entry 2 3
2 Entry 2 3
3 Entry 3 1
2 Entry 2 2
2 Entry 2