|
[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. |
||
| 06/23/2009 at 05:50PM PDT, ID: 24516749 |
|
[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: 29: 30: 31: 32: 33: 34: 35: 36: 37: |
# Query SELECT `IPRange`.iprange_from AS `From`, `IPRange`.iprange_to AS `To`, `IPRange`.iprange_countryname AS `Country`, `IPRange`.iprange_id AS `_ID`, `IPRange`.iprange_countrycode2 AS `Code2`, `IPRange`.iprange_countrycode3 AS `Code3`, `IPRange`.ip_from AS `FromIP`, `IPRange`.ip_to AS `ToIP` FROM `tbl_iprange` AS `IPRange` WHERE (`IPRange`.iprange_from <= 3232235900) AND (`IPRange`.iprange_to >= 3232235900) ORDER BY `Country`; # Schema CREATE TABLE `tbl_iprange` ( `iprange_from` int(11) unsigned DEFAULT NULL COMMENT 'From', `iprange_to` int(11) unsigned DEFAULT NULL COMMENT 'To', `iprange_countrycode2` varchar(2) DEFAULT NULL COMMENT 'Code2', `iprange_countrycode3` varchar(3) DEFAULT NULL COMMENT 'Code3', `iprange_countryname` varchar(50) DEFAULT NULL COMMENT 'Country', `iprange_id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id for a IPRange', `ip_from` mediumtext COMMENT 'FromIP', `ip_to` mediumtext COMMENT 'ToIP', PRIMARY KEY (`iprange_id`), KEY `SP_Country` (`iprange_countryname`), KEY `Test` (`iprange_from`,`iprange_to`) ) ENGINE=MyISAM AUTO_INCREMENT=268170 DEFAULT CHARSET=utf8 COMMENT='IPRange'; # Explain 1, 'SIMPLE', 'IPRange', 'ALL', 'Test', '', '', '', 152665, 'Using where; Using filesort' |
Advertisement