You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select Visits.customer_id , COUNT(*) AS count_no_trans from Visits LEFT JOIN Transactions ON Visits.visit_id = Transactions.visit_id where Transactions.visit_id IS NULL GROUP BY Visits.customer_id;