Hi,
Say I define an alias 'count' in my Select Query and I want to limit the amount returned to count / 5 (or 20% of the table). How can I do this? Mysql doesn't seem to take anything but integers, not functions.
|
|
|
|
|
|
|
Correct. The I would do this in two queries:
Replace the parameter You don't have to solve every problem in a single query. |
||
|
|
|
the LIMIT clause can takes 2 arguments and must be integers constants. you can try something like this
|
||
|
|
|
|
Look into MySQL stored routines (procedures/functions) |
||
|
|