Advertisement
Advertisement
| 06.10.2008 at 10:09AM PDT, ID: 23473109 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: |
CREATE TABLE IF NOT EXISTS `word` ( `wordID` bigint(20) unsigned NOT NULL auto_increment, `word` varchar(255) collate utf8_unicode_ci NOT NULL, `spell` tinyint(1) NOT NULL, `stem` varchar(24) collate utf8_unicode_ci NOT NULL, `global_freq` int(10) unsigned NOT NULL, `stem_freq` int(10) NOT NULL, `counted` int(10) NOT NULL, PRIMARY KEY (`wordID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=113907 ; INSERT INTO `word` (`wordID`, `word`, `spell`, `stem`, `global_freq`, `stem_freq`, `counted`) VALUES (21034, 'remodel', 1, 'remodel', 513, 0, 0), (69007, 'remodeled', 1, 'remodel', 113, 0, 0), (98141, 'remodeleds', 1, 'remodel', 25, 0, 0), (98141, 'remodeling', 1, 'remodel', 97, 0, 0), (14280, 'remote', 1, 'remot', 560, 0, 0), (26169, 'remotely', 1, 'remot', 14, 0, 0), (30337, 'remotes', 1, 'remot', 4, 0, 0), (16673, 'removal', 1, 'remov', 625, 0, 0), (21521, 'removers', 1, 'remov', 4, 0, 0), (21935, 'remover', 1, 'remov', 6, 0, 0), (28917, 'removable', 1, 'remov', 16, 0, 0), (30442, 'removing', 1, 'remov', 8, 0, 0), (31180, 'remove', 1, 'remov', 27, 0, 0), (52888, 'removed', 1, 'remov', 4, 0, 0), (71189, 'removals', 1, 'remov', 8, 0, 0), (77998, 'removes', 1, 'remov', 5, 0, 0); |