у зарплату лікаря.
Select Sername, Count (IDVisit) from Dantist d, Visit v where d.IDDantist = v.IDDantist and Sername like '% значення%' group by Sername
Визначити кількість візитів до одного лікаря.
Select Sername, Sum (cost) from Client c, Service s, Visit v where c.IDClient = v.IDClient and s.IDService = v.IDService and Sername like '% значення%' group by Sername
Скільки клієнт всього заплатив лікарні.
Select Sername, count (IDVisit) from Client c, Visit v where c.IDClient = v.IDClient and Sername like '% значення%' group by Sername
Кількість відвідувань одним клієнтом.
Select Sername, count (IDCard) from Client c, Card ca where c.IDClient = ca.IDClient and Sername like '% значення%' group by Sername
Кількість зубів, які лікував даний клієнт.
Select Sername, Toothnumber, Horisontal, Vertikal, Description from Client c, Card ca where c.IDClient = ca.IDClient and Sername like '% значення%'
Опис усіх хворих зубів клієнта.