I have two tables one named logins and one named members.
Both members and logins have "Name" field. This is the primary key.
Members includes information for accounts including the field "Rank" logins includes information on last login with a unix time stamp on the field "time"
I need to run a query for the members table that is Rank > 1 but I also need to make sure that the "time" field is more than 1391212800 from the logins table.
How would I do this?