pxoxrxn
Supreme Member
- Dec 21, 2011
- 1,398
- 2,084
Hey, I just wrote a simple query for my MySQL DB to try extract all verified email addresses. The query looked like this:
SELECT *
FROM user
WHERE verified >0;
For some reason it only returns a handful of results and then adds a line to the bottom saying MAX 0,30. I changed it to 2000 and it does the same. I am expecting it to return 1500+ results.
SELECT *
FROM user
WHERE verified >0;
For some reason it only returns a handful of results and then adds a line to the bottom saying MAX 0,30. I changed it to 2000 and it does the same. I am expecting it to return 1500+ results.