I'm trying to make a query where the result set will be only users that log in after a set time. An example would be if I set column A to = 4:00pm. I want my query to give me users that logged into my site after 4:00pm column B. I'm doing something like this. Is there another way?
$result = mysql_query("SELECT users from table_one where table_login_B > table_login_A") or die (mysql_error());