重複記錄我有一個職位表像下,MySQL需要使用select查詢
| ID | TITLE | NUMBER_OF_REPEAT
| 1 | post1 | 2
| 2 | post2 | 1
| 3 | post3 | 3
從上面的表格我需要一個選擇查詢產生取決於NUMBER_OF_REPEAT場的行。
預期的輸出,
| ID | TITLE
| 1 | post1
| 1 | post1
| 2 | post2
| 3 | post3
| 3 | post3
| 3 | post3
這種重複應該支持分頁也。請幫幫我。
在此先感謝。
的可能重複的[SQL:重複的結果行多次,並且數量的行(http://stackoverflow.com/questions/10423767/sql-repeat-a-result-row-multiple -times-and-number-the-rows) – hjpotter92