You can use the second table to store numbers and a link using a foreign key:
PersonTable: PersonId, Name, etc..
The second table will contain the numbers ...
NumbersTable: NumberId, PersonId(fk), Number
Then you can get numbers like this ...
SELECT p.Name, n.Number from PersonTable p Left Join NumbersTable n on p.PersonId = n.PersonId
This is a simple example. I used LEFT JOIN here if the person did not provide their number. Also, this is just pseudo-code , so do not use the table in the name.
source share