SELECT * FROM user LIMIT (SELECT group_limit FROM groups WHERE groupid = 7471);

link|improve this question

3  
please accept some answers to your past questions. – Shamim Hafiz May 9 '11 at 8:21
1  
Done, I accept most answers – William_He May 9 '11 at 8:28
feedback

1 Answer

up vote 2 down vote accepted

This is from the MySQL Database Knowledge base:

The LIMIT clause can be used to constrain the number of rows returned by the SELECT statement. LIMIT takes one or two numeric arguments, which must both be nonnegative integer constants (except when using prepared statements).

For your query to work, you will need to write it as a prepared statement, and then execute that.

SET @a = (SELECT group_limit FROM groups WHERE groupid = 7471);

PREPARE STMT FROM 'SELECT * FROM user LIMIT ?';
EXECUTE STMT USING @a;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.