I have a work request:
SELECT * FROM `posts` WHERE `groupid` IN (SELECT groupid FROM grouplists WHERE `usid` = '$usid') AND reposts IN (SELECT reposts FROM grouplists WHERE `usid` = '$usid')
It selects those lines where reposts
is exactly the selected value, and I need it to select lines with a value greater than or equal to the selected one. How to do it?