Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. create table customer (
  2. id int not null auto_increment primary key,
  3. ...
  4. text e-mail1 not null,
  5. text e-mail2 not null,
  6. text e-mail3 not null);
  7.  
  8. create table customer_emails(
  9. id int not null auto_increment primary key,
  10. text e-mail
  11. ...
  12. foreign key (customer_id) references customer(id));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement