Advertisement
sanjiisan

Untitled

Apr 12th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. '
  4. create table products(id int AUTO_INCREMENT, name varchar(70), description text, price decimal(2), PRIMARY KEY(id));
  5.  
  6. '
  7.  
  8.  
  9. '
  10. create table orders(id int AUTO_INCREMENT, description text, PRIMARY KEY(id));
  11.  
  12. '
  13.  
  14. '
  15.  
  16. create table clients(id int AUTO_INCREMENT, name varchar(70), surname varchar(70), PRIMARY KEY(id));
  17.  
  18. '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement