select id,name,total_copies from contacts.
それが select ステートメントです。そのまま戻せる
結果は
1,john,1
2,peter,3
3,sara,2
私はそれが必要です
1,john,1
2,peter,2
2,peter,2
2,peter,2
3,sara,2
3,sara,2
つまり、total_copies = 3 の場合は行を 3 回返す必要があり、値が 5 の場合は行を 5 回返す必要があります。