Table Books

isbn varchar 20
title varchar 70
author varchar 50
price float -

DROP TABLE IF EXISTS `test`.`books`;
CREATE TABLE  `test`.`books` (
`isbn` varchar(20) NOT NULL,
`title` varchar(70) NOT NULL,
`author` varchar(50) NOT NULL,
`price` float NOT NULL,
PRIMARY KEY  (`isbn`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

This entry was posted on Saturday, August 29th, 2009 at 11:17 pm and is filed under Uncategorized. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply