|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 10/20/2009 at 07:30AM PDT, ID: 24827008 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
Table Structure is as follows:
CREATE TABLE IF NOT EXISTS `SearchWords` (
`search_id` int(11) NOT NULL auto_increment,
`product_id` varchar(10) character set utf8 default NULL,
`search_word` varchar(255) character set utf8 default NULL,
`category_id` varchar(10) NOT NULL default '',
`product_publish` enum('Y','N') NOT NULL default 'N',
`type` enum('2D','3D') NOT NULL default '3D',
`title_word` enum('Y','N') NOT NULL default 'N',
UNIQUE KEY `search_id` (`search_id`),
KEY `search_word` (`search_word`),
KEY `category_id` (`category_id`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7936792 ;
|
Advertisement