Advertisement
blorbitalframe

Untitled

May 24th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.31 KB | None | 0 0
  1. create table bestand.lieferung
  2. (liefernr int(11) not null primary key auto_increment,
  3. hersteller varchar(40) not null,
  4. modell varchar(40) not null,
  5. typ enum("Monitor", "Computer", "Drucker") not null,
  6. lieferdatum date not null,
  7. rechnungsdatum date not null,
  8. stueckzahl int(5) not null);
  9.  
  10. explain bestand.lieferung
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement