Hi everyone,
I am using codeigniter 2.03 with wamp ( php 5.3.5, apache 2.2.17, mysql 5.1.54 ). I
am having problems with some queries. I have made the
following table:
CREATE TABLE `zipcodes` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`zip` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`averageprice` double DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8
COLLATE=utf8_unicode_ci
when I plug 'SELECT * FROM zipcodes WHERE averageprice BETWEEN 323606.93719128 AND 110864.97021613' into phpmyadmin I get :
MySQL returned an empty result set (i.e. zero rows).
There are definitely values between 323606.93719128 AND 110864.97021613 for averageprice column.
how do I get the right answer
Thanks in advance,
Bill