-- phpMyAdmin SQL Dump -- version 2.11.0 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Oct 20, 2008 at 08:41 AM -- Server version: 5.0.45 -- PHP Version: 5.2.4 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `computers` -- -- -------------------------------------------------------- -- -- Table structure for table `laptop` -- CREATE TABLE `laptop` ( `model` varchar(10) NOT NULL, `speed` float NOT NULL, `ram` int(11) NOT NULL, `hd` int(11) NOT NULL, `screen` float NOT NULL, `price` float NOT NULL, PRIMARY KEY (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `laptop` -- INSERT INTO `laptop` (`model`, `speed`, `ram`, `hd`, `screen`, `price`) VALUES ('2001', 2, 2048, 240, 20.1, 3673), ('2002', 1.73, 1024, 80, 17, 949), ('2003', 1.8, 512, 60, 15.4, 549), ('2004', 2, 512, 60, 13.3, 1150), ('2005', 2.16, 1024, 120, 17, 2500), ('2006', 2, 2048, 80, 15.4, 1700), ('2007', 1.83, 1024, 120, 13.3, 1429), ('2008', 1.6, 1024, 100, 15.4, 900), ('2009', 1.6, 512, 80, 14.1, 680), ('2010', 2, 2048, 160, 15.4, 2300); -- -------------------------------------------------------- -- -- Table structure for table `pc` -- CREATE TABLE `pc` ( `model` varchar(10) NOT NULL, `speed` float NOT NULL, `ram` int(11) NOT NULL, `hd` int(11) NOT NULL, `price` float NOT NULL, PRIMARY KEY (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `pc` -- INSERT INTO `pc` (`model`, `speed`, `ram`, `hd`, `price`) VALUES ('1001', 2.66, 1024, 250, 2114), ('1002', 2.1, 512, 250, 995), ('1003', 1.42, 512, 80, 478), ('1004', 2.8, 1024, 250, 649), ('1005', 3.2, 512, 250, 630), ('1006', 3.2, 1024, 320, 1049), ('1007', 2.2, 1024, 200, 510), ('1008', 2.2, 2048, 250, 770), ('1009', 2, 1024, 250, 650), ('1010', 2.8, 2048, 300, 770), ('1011', 1.86, 2048, 160, 959), ('1012', 2.8, 1024, 160, 649), ('1013', 3.06, 512, 80, 529); -- -------------------------------------------------------- -- -- Table structure for table `printer` -- CREATE TABLE `printer` ( `model` varchar(10) NOT NULL, `color` varchar(5) NOT NULL, `type` varchar(10) NOT NULL, `price` float NOT NULL, PRIMARY KEY (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `printer` -- INSERT INTO `printer` (`model`, `color`, `type`, `price`) VALUES ('3001', 'true', 'ink-jet', 99), ('3002', 'false', 'laser', 239), ('3003', 'true', 'laser', 899), ('3004', 'true', 'ink-jet', 120), ('3005', 'false', 'laser', 120), ('3006', 'true', 'ink-jet', 100), ('3007', 'true', 'laser', 200); -- -------------------------------------------------------- -- -- Table structure for table `product` -- CREATE TABLE `product` ( `maker` varchar(10) NOT NULL, `model` varchar(4) NOT NULL, `type` varchar(10) NOT NULL, PRIMARY KEY (`model`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `product` -- INSERT INTO `product` (`maker`, `model`, `type`) VALUES ('A', '1001', 'pc'), ('A', '1002', 'pc'), ('A', '1003', 'pc'), ('B', '1004', 'pc'), ('B', '1005', 'pc'), ('B', '1006', 'pc'), ('C', '1007', 'pc'), ('D', '1008', 'pc'), ('D', '1009', 'pc'), ('D', '1010', 'pc'), ('E', '1011', 'pc'), ('E', '1012', 'pc'), ('E', '1013', 'pc'), ('E', '2001', 'laptop'), ('E', '2002', 'laptop'), ('E', '2003', 'laptop'), ('A', '2004', 'laptop'), ('A', '2005', 'laptop'), ('A', '2006', 'laptop'), ('B', '2007', 'laptop'), ('F', '2008', 'laptop'), ('F', '2009', 'laptop'), ('G', '2010', 'laptop'), ('E', '3001', 'printer'), ('E', '3002', 'printer'), ('E', '3003', 'printer'), ('D', '3004', 'printer'), ('D', '3005', 'printer'), ('H', '3006', 'printer'), ('H', '3007', 'printer');