Home › Forums › Back End › SQL select parent if it has 10+ children › Reply To: SQL select parent if it has 10+ children
March 20, 2014 at 11:31 am
#166392
Participant
$myCount = ‘CODE TO DO COUNT AND GET # INTO $myCount variable’;
then… use your count to determine what to do later…
if($myCount >= 10) {
//do work here
}