A `logins` table has these (user_id, country) pairs: (1,'US'), (1,'US'), (2,'US'), (2,'IN'), (1,'IN'). How many rows does the query below return?SELECT DISTINCT user_id, country FROM logins;