Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. CREATE TABLE student
  2. (student_id NUMBER (8,0) constraint pk_student PRIMARY KEY,
  3. salutation VARCHAR2(5),
  4. first_name VARCHAR2(25),
  5. last_name VARCHAR2(25) constraint nn_last_name NOT NULL,
  6. street_address VARCHAR2(50),
  7. zip VARCHAR2(5) CONSTRAINT fk_student_id_zip REFERENCES zipcode,
  8. phone VARCHAR2(15),
  9. employer VARCHAR2(50),
  10. registration_date DATE CONSTRAINT nn_registration_date NOT NULL);
Add Comment
Please, Sign In to add comment