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
You could also use table aliases to avoid having to write out the full name each time:
SELECT v.first_name, ... f.fitness_test_date, ...
FROM visits v
LEFT JOIN fitness_tests f
ON v.email=f.email
AND v.first_name=f.first_name
AND v.last_name=f.last_name
...
WHERE v.visit_date >= '7-1-17';
You could also use table aliases to avoid having to write out the full name each time:
https://github.com/matthewboehlke/intro-data-capstone-musclehub/blob/master/Intro_To_Data_Analysis_Matt_Boehlke/musclehub.py#L121-L135
The text was updated successfully, but these errors were encountered: