With doesn't work i mean that it returns nu result.
i have a table with 500 rows
SELECT name, COUNT(*) FROM $table GROUP BY name LIMIT 50, 50
returns 0 rows, i quess MySql executes te first part of the query and limits the result of that query from row 50 to 100
I'll try to explain what i want to do a little better:
I want to be able to do a query on a part of a table. So, for example a query on table row 100 to 200
something like this:
with tablerow (50 to 100) do (SELECT name, COUNT(*) FROM $table GROUP BY name)
Any help is much appreciated,
W. Zwiers