sql examples from framework
Example: sql examples from framework
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.