Guiisilcolxd

Data-Mass-Generator PROJECT - Database Creation Script

Sep 12th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. --type: 1 - Person, 2 - Enterprise
  2. --sex: 0 - None, 1 - M, 2 - F
  3. create table name
  4. (
  5. id integer primary key AUTOINCREMENT,
  6. name varchar,
  7. sex char,
  8. type smallint
  9. );
  10.  
  11. create table surname
  12. (
  13. id integer primary key AUTOINCREMENT,
  14. surname varchar
  15. );
  16.  
  17. create table product
  18. (
  19. id integer primary key AUTOINCREMENT,
  20. name varchar
  21. );
Add Comment
Please, Sign In to add comment