Can anyone help me here please. Unless I'm missing the blindingly obvious, i'm total stumped.
How is this query returning that line, when I'm asking for everything less or equal to 6 in the price column, and every greater or equal to 500 in the minutes column.
- minutes is a varchar
- price is an int
price is an int
CREATE TABLE `gg_Crates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`price` int(11) NOT NULL,
`minutes` varchar(11) COLLATE utf8_unicode_ci NOT NULL,
`sms` varchar(11) COLLATE utf8_unicode_ci NOT NULL,
`data` varchar(11) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`bb` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci