Ex.
SELECT A_NUM, [No. of Entries], Address
FROM Table_1
Output:
123222, 5, 'MNL'
122334, 6, 'GS'
Then insert this data into another table.
INSERT INTO Table_entries
VALUES ('123222', 'MNL')
should run 5 times based on the no of entries. (6 times for '122334', 'GS')
Thank you.