On Wed, Sep 14, 2011 at 21:01, Alex Nikitin <niks...@gmail.com> wrote:
> You can use a limit with a nested select, you just can't use it in
> some cases, like inside an "IN" statement, but something like this
> should work:
>
> SELECT id, data, etc FROM table JOIN (SELECT special_id as id FROM
> special_table ORDER BY special_id LIMIT 0, 1000) AS table2 USING (id)
>
> Note: syntax may not be valid, but should be fairly straight forward
> to fix, have no time to play with it though...
>

Thanks.

-- 
Dotan Cohen

http://gibberish.co.il
http://what-is-what.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to