Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT t1.Name, t1.Age, t2.VisitDate, t3.Diagnosis, t4.PaymentSchedule
FROM table_one t1
JOIN table_two t2 on t1.ClientNum = t2.ClientNum
JOIN table_three t3 on t1.ClientNum = t3.ClientNum
JOIN table_four t4 on t1.ClientNum = t4.ClientNum
SELECT t1.Name, t1.Age, t2.VisitDate, t5.VisitDate, t3.Diagnosis, t4.PaymentSchedule
FROM table_one t1
JOIN table_two t2 on t1.ClientNum = t2.ClientNum
JOIN table_three t3 on t1.ClientNum = t3.ClientNum
JOIN table_four t4 on t1.ClientNum = t4.ClientNum
JOIN table_two t5 on t1.ClientNum = t5.ClientNum
WHERE t2.occurence = 1
AND t5.occurence = 2