Exemples SQL de votre travail

Select * from external_patients where "patientId" = 55424;
Select * from patients where "patientId" = 55424;
Select * from patients where "firstName" like '%JohnDoe%'; 
Select * from users where "userId" = 12345;

etc.
Obedient Ocelot