Possible Duplicate:
mysql: Using LIMIT within GROUP BY to get N results per group?
I need to perform a select that will return (n) number of records per unique us_state.
Basically, I would like to find an equivalent to TOP(n), but since MySQL doesn't support that, is there a similar command or method I can use to shortcut having to right specialized code to perform the same operation?
Thanks.