| 3 |
lars |
1 |
|
|
|
2 |
CREATE TABLE `Feature_to_Ware` (
|
|
|
3 |
`ID` int(4) NOT NULL auto_increment,
|
|
|
4 |
`Ware` int(4) default NULL,
|
|
|
5 |
`Feature` int(4) default NULL,
|
|
|
6 |
`Feature_options` int(4) unsigned default NULL,
|
|
|
7 |
PRIMARY KEY (`ID`)
|
|
|
8 |
) TYPE=MyISAM AUTO_INCREMENT=12 ;
|
|
|
9 |
|
|
|
10 |
INSERT INTO `Feature_to_Ware` VALUES (5, 13752, 1, 7);
|
|
|
11 |
INSERT INTO `Feature_to_Ware` VALUES (6, 13753, 1, 7);
|
|
|
12 |
INSERT INTO `Feature_to_Ware` VALUES (7, 13752, 3, 31);
|
|
|
13 |
INSERT INTO `Feature_to_Ware` VALUES (8, 13753, 3, 31);
|
|
|
14 |
INSERT INTO `Feature_to_Ware` VALUES (10, 13084, 1, 1);
|
|
|
15 |
INSERT INTO `Feature_to_Ware` VALUES (11, 13084, 2, 7);
|