Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. create scheme test;
  2. use test;
  3.  
  4. create table Department(
  5. dept_id int(5) NOT NULL primary key,
  6. dept_name String (40) NOT NULL,
  7. mgr_id int (5) NOT NULL,
  8. mgr_start_date date
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement