Is there any good way to do a query on mysql table, but only grabbing the rows where the first letter is x? (x meaning it could be anything) ?
The onlyway i could see doing this is grabbing every row, and doing a substr($str, 0, 1) and if its x then display it. But is there a bettery way? I dont want to go through thousands of records...
Derek C.