Alright I don't know what the problem is, maybe I'm just stupid. But here goes:
SELECT * FROM domains WHERE tld='com' AND date !='' AND domain LIKE "%a"
That works and selects rows that end with a
SELECT * FROM domains WHERE tld='com' AND date !='' AND domain LIKE "a%"
That does not work, it should select rows that begin with a but doesn't Now I know there are records that begin with a so whats the problem? Thanks