The proper way to do this is to create a new table to hold the image names, then join this new table with the original table.
this would be your structure:
User_table: (Original table)
ID | Name | Age
1 | Joe Jones| 22
2 | Tom Smith | 25
Images_table: (new table)
User_Table_ID | Image
1 | 00010
1 | 00011
1 | 00012
2 | 00010
2 | 00018
This allows you to re-use an image for many users.
Your select would look something like this...
SELECT User_table.ID, User_table.Name, User_table.Age, Images_table.Image
FROM Images_table INNER JOIN User_table ON Images_table.User_table_ID = User_table.ID
Let's say you wanted all images for Joe Jones you would do this...
SELECT Image
FROM Images_table INNER JOIN User_table ON Images_table.User_table_ID = User_table.ID
WHERE User_table.Name="Joe Jones"