Hi,
I currently have a table called “pages” containing the following columns:
pageid, domainid, location, lastread
I've put together a query that returns 10 rows with the lowest “lastread” values, for which this works fine:
SELECT * FROM pages ORDER BY lastread ACS LIMIT 0,10;
I now the have...