CREATE TABLE emails (
email_id INT DEFAULT 0 NOT NULL,
email VARCHAR(80) DEFAULT '' NOT NULL,
PRIMARY KEY(eid),
UNIQUE(email)
);
Notice how I made email unique above, this means the database will reject an INSERT statement if the given email already exists.
Hopefully this post won't look like crap, as I used html to do identing 🙂