If I understood you correctly, you're looking for something like the following:
CREATE TABLE Users (
userID int not null auto_increment,
primary key (myTableID),
username varchar (20)
);
CREATE TABLE Emails (
emailID int not null auto_increment,
primary key (emailID),
email varchar (255),
userID int not null
);
SELECT Users.username,
Emails.email
FROM Users, Emails
WHERE Users.userID = Emails.userID;