Advertisement
PieInlaw

sd

May 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.27 KB | None | 0 0
  1. CREATE DATABASE ikea;
  2.  
  3.  
  4.  
  5.  
  6.  
  7. use ikea;
  8.  
  9.  
  10.  
  11.  
  12. CREATE TABLE system
  13.  
  14. (
  15.  
  16.     s_id          int(5)         not null AUTO_INCREMENT,
  17.  
  18.     s_name        varchar(20)    not null,
  19.  
  20.     s_login       varchar(100)   not null,
  21.  
  22.     PRIMARY KEY(s_id, s_login)
  23.  
  24. ) DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement