how about looking for times greater than the current time
i think it would work with now() but if it doesnt and your running it from php then you could just use a var to get a timestamp or something, depending on the format of the fields your using
<?
$sql = "SELECT * from table where gameDate > now()";
// or with a var
$time = date();
$sql = "SELECT * from table where gameDate > ".$time."";
?>
have a try with that, and see what you get 😉