Advertisement
Guest User

Untitled

a guest
Nov 7th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. create table `bcuk_books`(
  2. `id` int(15) not null auto_increment,
  3. `name` varchar(25) not null,
  4. `author` varchar(25) not null,
  5. `desc` varchar(25) not null,
  6. `price` varchar(25) not null,
  7. `rating` varchar(25) not null,
  8. `image` BLOB not null,
  9. primary key(`id`));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement